summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorAdrian Thurston <thurston@colm.net>2019-11-09 07:58:54 -0300
committerAdrian Thurston <thurston@colm.net>2019-11-09 08:00:57 -0300
commitd736c8e75cc2cb6ec0b93135c28e7030f9ad3b1f (patch)
treeadaac06a6889b7920e760b2b79aec44908634ca8 /doc
parent528900008458bf5a2b6e887be3356576b5907a5a (diff)
downloadcolm-d736c8e75cc2cb6ec0b93135c28e7030f9ad3b1f.tar.gz
Use inidices (not indicies) as plural of index.
fixes #60
Diffstat (limited to 'doc')
-rw-r--r--doc/ragel/ragel.1.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/ragel/ragel.1.in b/doc/ragel/ragel.1.in
index e9a6204c..9c768e85 100644
--- a/doc/ragel/ragel.1.in
+++ b/doc/ragel/ragel.1.in
@@ -158,7 +158,7 @@ The host language is JavaScript.
(C/D/Java/Ruby/C#) Generate a table driven FSM. This is the default code style.
The table driven
FSM represents the state machine as static data. There are tables of states,
-transitions, indicies and actions. The current state is stored in a variable.
+transitions, indices and actions. The current state is stored in a variable.
The execution is a loop that looks that given the current state and current
character to process looks up the transition to take using a binary search,
executes any actions and moves to the target state. In general, the table