diff options
author | coffeepots <coffeepots@users.noreply.github.com> | 2018-05-18 18:37:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-18 18:37:28 +0100 |
commit | 43b1ac07d4bb7eeecec45f8dca50442618f2608b (patch) | |
tree | 1a5424e51455a607a5168465bf5615455113edec /compiler | |
parent | 5b176f14a2d6ef12e91027d736d60dcaa799347c (diff) | |
download | Nim-43b1ac07d4bb7eeecec45f8dca50442618f2608b.tar.gz |
Fix typo in "out of bounds" error message
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/vm.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/vm.nim b/compiler/vm.nim index dcb4cefd7..cbd304caa 100644 --- a/compiler/vm.nim +++ b/compiler/vm.nim @@ -441,7 +441,7 @@ proc setLenSeq(c: PCtx; node: PNode; newLen: int; info: TLineInfo) = node.sons[i] = newNodeI(typeKind, info) const - errIndexOutOfBounds = "index ouf of bounds" + errIndexOutOfBounds = "index out of bounds" errNilAccess = "attempt to access a nil address" errOverOrUnderflow = "over- or underflow" errConstantDivisionByZero = "division by zero" |