From 32f8ed7afd3234bc3c81936e5633cbf454723c49 Mon Sep 17 00:00:00 2001 From: Mike Shaver Date: Fri, 23 Feb 2024 11:18:22 -0500 Subject: [PATCH] Typo fix. --- prism/prism.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prism/prism.c b/prism/prism.c index afd7969ae1..8bfc6ed6d1 100644 --- a/prism/prism.c +++ b/prism/prism.c @@ -9829,7 +9829,7 @@ parser_lex(pm_parser_t *parser) { ) { // Since we know we're about to add an __END__ comment, we know we - // need at add all of the newlines to get the correct column + // need to add all of the newlines to get the correct column // information for it. const uint8_t *cursor = parser->current.end; while ((cursor = next_newline(cursor, parser->end - cursor)) != NULL) {