Skip to content

Commit

Permalink
docs: fix simple typo, strucuture -> structure (#80)
Browse files Browse the repository at this point in the history
There is a small typo in challenges/TextSearch/README.md.

Should read `structure` rather than `strucuture`.
  • Loading branch information
timgates42 authored Dec 19, 2020
1 parent 94f886e commit b517285
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion challenges/TextSearch/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ The search algorithm is inspired by Ken Thompson's 1968 paper on matching using

The approach builds a not quite NFA a not quite DFA, but stores the transitions from state to state as a directed graph. Epsilon transitions (no character input) are a special transition that enables operators like * and ? to function properly.

Each operator has a very specifically designed digraph that enables the proper state transtion to occur. These digraphs were built in order to accommodate all the operators as well as be attached to new states. These are stored in the **state_t** strucuture with either a left or right path (**t1, t2**).
Each operator has a very specifically designed digraph that enables the proper state transtion to occur. These digraphs were built in order to accommodate all the operators as well as be attached to new states. These are stored in the **state_t** structure with either a left or right path (**t1, t2**).

## Vulnerability

Expand Down

0 comments on commit b517285

Please sign in to comment.