Correcting incorrect comment in vvc related to parsing ASCII strings.
authorAaron Taylor <ataylor@subgeniuskitty.com>
Thu, 18 Jul 2019 20:35:22 +0000 (13:35 -0700)
committerAaron Taylor <ataylor@subgeniuskitty.com>
Thu, 18 Jul 2019 20:35:22 +0000 (13:35 -0700)
vv_compiler.c

index f7e9540..e53f70d 100644 (file)
@@ -25,9 +25,9 @@ print_usage(char ** argv)
     );
 }
 
     );
 }
 
-/* Allows building an ASCII string on the stack.                             */
-/* This syntax: A"test"                                                      */
-/* Results in five PUSH_IMMEDIATE commands for the four letters and newline. */
+/* Builds an ASCII string on the stack using VVS PUSH_IMMEDIATE commands.    */
+/* The syntax: A"test" results in six PUSH_IMMEDIATE commands for the four   */
+/*   letters, newline, and null-terminator.                                  */
 /* Expects 'input' to present a double-quoted ('"') ASCII string.            */
 /* The 'A' has already been chomped.                                         */
 void
 /* Expects 'input' to present a double-quoted ('"') ASCII string.            */
 /* The 'A' has already been chomped.                                         */
 void