From 9c7faec5544e997598eabb7858940ac23d988008 Mon Sep 17 00:00:00 2001 From: Philipp Eder Date: Tue, 29 Nov 2022 12:46:02 +0100 Subject: [PATCH] Change: typo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Christoph Krämer --- rust/nasl-syntax/src/lexer.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/nasl-syntax/src/lexer.rs b/rust/nasl-syntax/src/lexer.rs index e260c7dec..d331402c9 100644 --- a/rust/nasl-syntax/src/lexer.rs +++ b/rust/nasl-syntax/src/lexer.rs @@ -139,7 +139,7 @@ impl<'a> Lexer<'a> { continue; } } - // Due to peeking it can end up in and endlessloop + // Due to peeking it can end up in an endless loop return Err(unexpected_token!(token)); }