From e2e9b87dee3fff895fc008309f4b585411835474 Mon Sep 17 00:00:00 2001 From: raskad <32105367+raskad@users.noreply.github.com> Date: Sat, 13 May 2023 04:59:06 +0200 Subject: [PATCH] Apply suggestion --- boa_engine/src/context/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boa_engine/src/context/mod.rs b/boa_engine/src/context/mod.rs index 9fde27a844e..9280c9eee0f 100644 --- a/boa_engine/src/context/mod.rs +++ b/boa_engine/src/context/mod.rs @@ -661,7 +661,7 @@ impl Context<'_> { std::mem::swap(&mut self.realm, realm); } - /// Get and increment the parser identifier. + /// Increment and get the parser identifier. pub(crate) fn next_parser_identifier(&mut self) -> u32 { self.parser_identifier += 1; self.parser_identifier