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/vm | |
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/vm')
-rw-r--r-- | tests/vm/tyaytypedesc.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/vm/tyaytypedesc.nim b/tests/vm/tyaytypedesc.nim index a3ad9b707..aab94d643 100644 --- a/tests/vm/tyaytypedesc.nim +++ b/tests/vm/tyaytypedesc.nim @@ -10,7 +10,7 @@ type NodeType* = enum type TokenType* = enum ttWhitespace -proc enumTable*[A, B, C](a: openarray[tuple[key: A, val: B]], ret: typedesc[C]): C = +proc enumTable*[A, B, C](a: openArray[tuple[key: A, val: B]], ret: typedesc[C]): C = for item in a: result[item.key] = item.val |