From 61dceab9fd855af91aec570a2d3cf84ff037b33d Mon Sep 17 00:00:00 2001 From: Mattia Giambirtone Date: Tue, 11 Oct 2022 09:07:50 +0200 Subject: [PATCH] Fixed grammatical error in docs --- src/backend/vm.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/vm.nim b/src/backend/vm.nim index c4f8136..6b4204e 100644 --- a/src/backend/vm.nim +++ b/src/backend/vm.nim @@ -383,7 +383,7 @@ proc `!>=`[T](a, b: T): auto {.inline, used.} = # Stack primitives. Note: all accesses to the call stack -# that go through the getc/setc wrappers is frame-relative, +# that go through the getc/setc wrappers are frame-relative, # meaning that the index is added to the current stack frame's # bottom to obtain an absolute stack index proc push(self: PeonVM, obj: uint64) =