diff options
author | flywind <xzsflywind@gmail.com> | 2022-01-04 20:29:50 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-04 13:29:50 +0100 |
commit | 9df195ef581879cf9e5c3c3154755bd1dba677c6 (patch) | |
tree | 71dc955a6976558b3cb47f98443093b388c1ce36 /tests/tuples | |
parent | 1869826668e2e3a0fd69cc1b69fb12b07993e417 (diff) | |
download | Nim-9df195ef581879cf9e5c3c3154755bd1dba677c6.tar.gz |
style usages part one (openarray => openArray) (#19321)
* style usages (openArray) * revert doc changes
Diffstat (limited to 'tests/tuples')
-rw-r--r-- | tests/tuples/tuple_with_nil.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/tuples/tuple_with_nil.nim b/tests/tuples/tuple_with_nil.nim index 7136c8cab..9cad6eccd 100644 --- a/tests/tuples/tuple_with_nil.nim +++ b/tests/tuples/tuple_with_nil.nim @@ -477,7 +477,7 @@ proc writeformat(o: var Writer; b: bool; fmt: Format) = else: raise newException(FormatError, "Boolean values must of one of the following types: s,b,o,x,X,d,n") -proc writeformat(o: var Writer; ary: openarray[system.any]; fmt: Format) = +proc writeformat(o: var Writer; ary: openArray[system.any]; fmt: Format) = ## Write array `ary` according to format `fmt` using output object ## `o` and output function `add`. if ary.len == 0: return @@ -657,7 +657,7 @@ proc literal[T](x: T): NimNode {.compiletime, nosideeffect.} = result = newLit(x) proc generatefmt(fmtstr: string; - args: var openarray[tuple[arg:NimNode, cnt:int]]; + args: var openArray[tuple[arg:NimNode, cnt:int]]; arg: var int;): seq[tuple[val, fmt:NimNode]] {.compiletime.} = ## fmtstr ## the format string |