aboutsummaryrefslogtreecommitdiff
path: root/src/regex/regex_internal.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/regex/regex_internal.h')
-rw-r--r--src/regex/regex_internal.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/regex/regex_internal.h b/src/regex/regex_internal.h
index 17b038f21..8f29cff33 100644
--- a/src/regex/regex_internal.h
+++ b/src/regex/regex_internal.h
@@ -203,7 +203,7 @@ struct REGEX_INTERNAL_State
203 struct GNUNET_HashCode hash; 203 struct GNUNET_HashCode hash;
204 204
205 /** 205 /**
206 * Linear state ID accquired by depth-first-search. This ID should be used for 206 * Linear state ID acquired by depth-first-search. This ID should be used for
207 * storing information about the state in an array, because the 'id' of the 207 * storing information about the state in an array, because the 'id' of the
208 * state is not guaranteed to be linear. The 'dfs_id' is guaranteed to be > 0 208 * state is not guaranteed to be linear. The 'dfs_id' is guaranteed to be > 0
209 * and < 'state_count'. 209 * and < 'state_count'.
@@ -329,7 +329,7 @@ REGEX_INTERNAL_construct_nfa (const char *regex, const size_t len);
329 329
330 330
331/** 331/**
332 * Function that get's passed to automaton traversal and is called before each 332 * Function that gets passed to automaton traversal and is called before each
333 * next traversal from state 's' using transition 't' to check if traversal 333 * next traversal from state 's' using transition 't' to check if traversal
334 * should proceed. Return GNUNET_NO to stop traversal or GNUNET_YES to continue. 334 * should proceed. Return GNUNET_NO to stop traversal or GNUNET_YES to continue.
335 * 335 *