Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mRemoteNG/PuTTYNG.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorSimon Tatham <anakin@pobox.com>2022-01-03 09:38:07 +0300
committerSimon Tatham <anakin@pobox.com>2022-01-03 09:40:51 +0300
commit4ecb40a60d26a1b9f6705940cec8f49b8a4eab2d (patch)
tree14885ade8b77404324b3620a045e3c5f0cc14851 /utils
parentf9d0557330f985ff23dbe5b8e014dc22cecbf13e (diff)
Fix a batch of typos in comments and docs.
Diffstat (limited to 'utils')
-rw-r--r--utils/tree234.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/tree234.c b/utils/tree234.c
index f9104158..83683f13 100644
--- a/utils/tree234.c
+++ b/utils/tree234.c
@@ -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)