1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-01 11:32:48 -05:00

Fix a batch of typos in comments and docs.

This commit is contained in:
Simon Tatham
2022-01-03 06:38:07 +00:00
parent f9d0557330
commit 4ecb40a60d
10 changed files with 11 additions and 11 deletions

View File

@ -615,7 +615,7 @@ void search234_start(search234_state *state, tree234 *t)
{
state->_node = t->root;
state->_base = 0; /* index of first element in this node's subtree */
state->_last = -1; /* indicate that this node is not previously visted */
state->_last = -1; /* indicate that this node is not previously visited */
search234_step(state, 0);
}
void search234_step(search234_state *state, int direction)