diff options
author | Dominik Picheta <dominikpicheta@googlemail.com> | 2017-01-21 20:49:41 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-21 20:49:41 +0100 |
commit | aeda6c517eac016d425c81829aa529c881d3f3e1 (patch) | |
tree | a316309e6bf975a7c2db3782c631a5659b787d0a /doc | |
parent | ac454e6f45e539dd45dc29d5bb5f3a7fcb39ce7f (diff) | |
parent | 11d0265018232680cc3e4fd5c6a1d5313dcd6499 (diff) | |
download | Nim-aeda6c517eac016d425c81829aa529c881d3f3e1.tar.gz |
Merge pull request #5262 from AvdN/patch-2
inconsistent insertion of space after colon
Diffstat (limited to 'doc')
-rw-r--r-- | doc/nep1.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/nep1.rst b/doc/nep1.rst index b5991ba9e..11fd58dd4 100644 --- a/doc/nep1.rst +++ b/doc/nep1.rst @@ -178,7 +178,7 @@ Conventions for multi-line statements and expressions consider renaming your procedure). .. code-block:: nim - proc lotsOfArguments(argOne: string, argTwo: int, argThree:float + proc lotsOfArguments(argOne: string, argTwo: int, argThree: float argFour: proc(), argFive: bool): int {.heyLookALongPragma.} = - Multi-line procedure calls should either have one argument per line (like |