diff options
author | Sizhe Zhao <prc.zhao@outlook.com> | 2020-06-27 18:11:29 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-27 12:11:29 +0200 |
commit | 70b07edf42d5bc5296bfc02769846d9d10069213 (patch) | |
tree | 22f87fafdc761445030c25d524aae04e2e73cb29 | |
parent | f926dc53f127cb7fc26daf35e0de38612a512552 (diff) | |
download | Nim-70b07edf42d5bc5296bfc02769846d9d10069213.tar.gz |
Fix missing comma (#14829)
-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 35b1a1f62..75343c85b 100644 --- a/doc/nep1.rst +++ b/doc/nep1.rst @@ -267,7 +267,7 @@ Conventions for multi-line statements and expressions EventCallback = proc (timeReceived: Time, errorCode: int, event: Event, output: var string) - proc lotsOfArguments(argOne: string, argTwo: int, argThree: float + proc lotsOfArguments(argOne: string, argTwo: int, argThree: float, argFour: proc(), argFive: bool): int {.heyLookALongPragma.} = |