diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2020-09-28 01:45:05 +0200 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2020-09-28 01:46:38 +0200 |
commit | b99f96cf6af73eef6bb887cd28bdb6508f2dd702 (patch) | |
tree | 7367c165dedb33b90ad688f997d5efb593f34c10 | |
parent | 5759df156b0314a4bc8a87ac7a1c8c909a3275d4 (diff) | |
download | sdn-b99f96cf6af73eef6bb887cd28bdb6508f2dd702.tar.gz sdn-b99f96cf6af73eef6bb887cd28bdb6508f2dd702.tar.xz sdn-b99f96cf6af73eef6bb887cd28bdb6508f2dd702.zip |
Fix comment: the word "no-op" needs to be split
-rw-r--r-- | sdn.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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}, |