1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-17 16:29:32 +00:00

Fixed the " til " typos.

This commit is contained in:
Greg King 2015-09-06 12:23:58 -04:00
parent 8d5f6b89ae
commit a555f121fd
4 changed files with 4 additions and 4 deletions

View File

@ -321,7 +321,7 @@ static void NewStyleComment (void)
/* Remove a new style C comment from line. */
{
/* Beware: Because line continuation chars are handled when reading
** lines, we may only skip til the end of the source line, which
** lines, we may only skip until the end of the source line, which
** may not be the same as the end of the input line. The end of the
** source line is denoted by a lf (\n) character.
*/

View File

@ -55,7 +55,7 @@
int spawnvp (int Mode attribute ((unused)),
const char* File attribute ((unused)),
char* const argv [])
/* Execute the given program searching and wait til it terminates. The Mode
/* Execute the given program searching and wait until it terminates. The Mode
** argument is ignored (compatibility only). The result of the function is
** the return code of the program. The function will terminate the program
** on errors.

View File

@ -63,7 +63,7 @@
int spawnvp (int Mode attribute ((unused)), const char* File, char* const argv [])
/* Execute the given program searching and wait til it terminates. The Mode
/* Execute the given program searching and wait until it terminates. The Mode
** argument is ignored (compatibility only). The result of the function is
** the return code of the program. The function will terminate the program
** on errors.

View File

@ -1885,7 +1885,7 @@ int main (int argc, char* argv[])
ExecCmd (&Args, MainCmds, sizeof (MainCmds) / sizeof (MainCmds[0]));
}
/* Loop til program end */
/* Loop until program end */
while (!Terminate) {
/* Output a prompt, then read the input */