diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2024-11-18 16:28:49 +0300 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2024-11-18 16:30:59 +0300 |
commit | 52d66c5783d39a23027102c3087eac8ef1c0f02f (patch) | |
tree | 6f75f5af844e4110ebea49954be8b966d4351f0f /src/parser.h | |
parent | 02ab80c1f94ef89f5cf247a6d8baa7e612e51f25 (diff) | |
download | sciteco-52d66c5783d39a23027102c3087eac8ef1c0f02f.tar.gz |
fixed some common typos: "ie." and "eg.", "ocur" instead of "occur"
Diffstat (limited to 'src/parser.h')
-rw-r--r-- | src/parser.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/parser.h b/src/parser.h index 53eb76b..3d69013 100644 --- a/src/parser.h +++ b/src/parser.h @@ -186,7 +186,7 @@ struct teco_state_t { teco_state_process_edit_cmd_cb_t process_edit_cmd_cb; /** - * Whether this state is a start state (ie. not within any + * Whether this state is a start state (i.e. not within any * escape sequence etc.). * This is separate of TECO_KEYMACRO_MASK_START which is set * only in the main machine's start states. @@ -432,7 +432,7 @@ typedef struct { } teco_machine_scintilla_t; typedef enum { - /** Normal parsing - ie. execute while parsing */ + /** Normal parsing - i.e. execute while parsing */ TECO_MODE_NORMAL = 0, /** Parse, but don't execute until reaching not-yet-defined Goto-label */ TECO_MODE_PARSE_ONLY_GOTO, @@ -448,7 +448,7 @@ typedef enum { struct teco_machine_main_t { teco_machine_t parent; - /** Program counter, ie. pointer to the next character in the current macro frame */ + /** Program counter, i.e. pointer to the next character in the current macro frame */ gsize macro_pc; /** |