summary refs log tree commit diff stats
path: root/compiler
diff options
context:
space:
mode:
authorcoffeepots <coffeepots@users.noreply.github.com>2018-05-18 18:37:28 +0100
committerGitHub <noreply@github.com>2018-05-18 18:37:28 +0100
commit43b1ac07d4bb7eeecec45f8dca50442618f2608b (patch)
tree1a5424e51455a607a5168465bf5615455113edec /compiler
parent5b176f14a2d6ef12e91027d736d60dcaa799347c (diff)
downloadNim-43b1ac07d4bb7eeecec45f8dca50442618f2608b.tar.gz
Fix typo in "out of bounds" error message
Diffstat (limited to 'compiler')
-rw-r--r--compiler/vm.nim2
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"