style usages part one (openarray => openArray) (#19321)

* style usages (openArray)

* revert doc changes

(cherry picked from commit 9df195ef58)
This commit is contained in:
flywind
2022-01-04 20:29:50 +08:00
committed by narimiran
parent b0cbc9a74c
commit 1368316b7f
48 changed files with 74 additions and 74 deletions

View File

@@ -44,7 +44,7 @@ block tarray:
arr: TMyarray
proc sum(a: openarray[int]): int =
proc sum(a: openArray[int]): int =
result = 0
var i = 0
while i < len(a):