From 7c193badddc3ee18c0fbb6ec3506f8e0a5c1adfa Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Wed, 7 Sep 2022 13:31:24 -0700 Subject: [PATCH] Fix more tests --- crates/wast/src/lexer.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/crates/wast/src/lexer.rs b/crates/wast/src/lexer.rs index 943615ff45..a4f8f128c7 100644 --- a/crates/wast/src/lexer.rs +++ b/crates/wast/src/lexer.rs @@ -496,7 +496,9 @@ impl<'a> Lexer<'a> { /// https://github.com/WebAssembly/spec/pull/1499 but the general gist is /// that this is parsing the grammar: /// - /// reserved := (idchar | string)+ + /// ```text + /// reserved := (idchar | string)+ + /// ``` /// /// which means that it is eating any number of adjacent string/idchar /// tokens (e.g. `a"b"c`) and returning the classification of what was