Fix comment: the word "no-op" needs to be split

This commit is contained in:
Přemysl Eric Janouch 2020-09-28 01:45:05 +02:00
parent 5759df156b
commit b99f96cf6a
Signed by: p
GPG Key ID: A0420B94F92B9493
1 changed files with 1 additions and 1 deletions

View File

@ -162,7 +162,7 @@ fun parse_line (istream &is, vector<string> &out) -> bool {
enum {TAKE = 1 << 3, PUSH = 1 << 4, STOP = 1 << 5, ERROR = 1 << 6};
enum {TWOR = TAKE | WOR};
// We never transition back to the start state, so it can stay as a noop
// We never transition back to the start state, so it can stay as a no-op
static char table[STATES][7] = {
// state EOF SP, TAB ' # \ LF default
/* STA */ {ERROR, DEF, QUO, COM, ESC, STOP, TWOR},