From: Dmitry Volyntsev Date: Fri, 28 Dec 2018 12:39:59 +0000 (+0300) Subject: Fixed grammar in njs_vm.h. X-Git-Tag: 0.2.8~97 X-Git-Url: http://www.kaiwu.me/postgresql/commit/?a=commitdiff_plain;h=f70ebd97d36294d8f1db1d646968b4b3abf1d6e3;p=njs.git Fixed grammar in njs_vm.h. --- diff --git a/njs/njs_vm.h b/njs/njs_vm.h index 7dd4fe06..50d2e9a3 100644 --- a/njs/njs_vm.h +++ b/njs/njs_vm.h @@ -828,7 +828,7 @@ typedef enum { NJS_SCOPE_GLOBAL = 1, NJS_SCOPE_CALLEE_ARGUMENTS = 2, /* - * The argument and local VM scopes should separate because a + * The argument and local VM scopes should be separated because a * function may be called with any number of arguments. */ NJS_SCOPE_ARGUMENTS = 3, @@ -838,7 +838,7 @@ typedef enum { NJS_SCOPE_CLOSURE = 5, /* * The block and shim scopes are not really VM scopes. - * They used only on parsing phase. + * They are used only on parsing phase. */ NJS_SCOPE_BLOCK = 16, NJS_SCOPE_SHIM = 17,