Skip to content

Commit

Permalink
Updating 4th example of the STYLE_GUIDE's multi-function-call section
Browse files Browse the repository at this point in the history
  • Loading branch information
adri326 committed Jan 15, 2020
1 parent b7dc349 commit 8121944
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions STYLE_GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -429,9 +429,9 @@ end
// Not OK
output
.>append(file_name)
.>append(":")
.>append(msg)
.> append(file_name)
.> append(":")
.> append(msg)
```

- Function arguments mostly follow the same rules as arguments in method declarations. However, all arguments may be placed on the following line with an additional level of indentation if all arguments would fit on that line. Otherwise, arguments must be placed on individual lines. These rules also apply to FFI calls. A `where` keyword and the following arguments may all exist on their own line.
Expand Down

0 comments on commit 8121944

Please sign in to comment.