From 08e37dc9a445c739987c0652bb05807dabc4de05 Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Fri, 2 Oct 2020 07:34:35 +1000 Subject: [PATCH] docs: fix simple typo, preceeding -> preceding There is a small typo in src/tokenizer.c. Should read `preceding` rather than `preceeding`. --- src/tokenizer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tokenizer.c b/src/tokenizer.c index 400e5395..7e22ec40 100644 --- a/src/tokenizer.c +++ b/src/tokenizer.c @@ -409,7 +409,7 @@ static void reset_token_start_point(GumboTokenizerState* tokenizer) { // Sets the tag buffer original text and start point to the current iterator // position. This is necessary because attribute names & values may have -// whitespace preceeding them, and so we can't assume that the actual token +// whitespace preceding them, and so we can't assume that the actual token // starting point was the end of the last tag buffer usage. static void reset_tag_buffer_start_point(GumboParser* parser) { GumboTokenizerState* tokenizer = parser->_tokenizer_state;