diff options
author | Clyybber <darkmine956@gmail.com> | 2021-03-29 16:03:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-29 16:03:54 +0200 |
commit | 1a407402a4614fc9100617f71c2d3c9b8a8367a5 (patch) | |
tree | 6ed3c7171343e774eee02e505b6baac04495c18a | |
parent | e2269f9216e7d46bd446448c7bbeb5fd8ca38d1f (diff) | |
download | Nim-1a407402a4614fc9100617f71c2d3c9b8a8367a5.tar.gz |
Typo in vm.nim
-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 c2ff798a7..d97d2d6e6 100644 --- a/compiler/vm.nim +++ b/compiler/vm.nim @@ -2221,7 +2221,7 @@ proc setupCompileTimeVar*(module: PSym; idgen: IdGenerator; g: ModuleGraph; n: P discard evalConstExprAux(module, idgen, g, nil, n, emStaticStmt) proc prepareVMValue(arg: PNode): PNode = - ## strip nkExprColonExpr from tuple values recurively. That is how + ## strip nkExprColonExpr from tuple values recursively. That is how ## they are expected to be stored in the VM. # Early abort without copy. No transformation takes place. |