]> git.kaiwu.me - njs.git/commitdiff
Fixed grammar in njs_vm.h.
authorDmitry Volyntsev <xeioex@nginx.com>
Fri, 28 Dec 2018 12:39:59 +0000 (15:39 +0300)
committerDmitry Volyntsev <xeioex@nginx.com>
Fri, 28 Dec 2018 12:39:59 +0000 (15:39 +0300)
njs/njs_vm.h

index 7dd4fe0654da0e434481a238c5c482691fd17e88..50d2e9a3b960234113fbc68b92357fa7f3648c29 100644 (file)
@@ -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,