From 603bb4ac0225089c871c873996eb1cb68d897622 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Thu, 21 Jun 2018 15:45:24 -0700 Subject: [PATCH] Remove an obsolete comment. --- lib/reader/src/parser.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/reader/src/parser.rs b/lib/reader/src/parser.rs index 7e85a8cc00..72dc466335 100644 --- a/lib/reader/src/parser.rs +++ b/lib/reader/src/parser.rs @@ -466,7 +466,7 @@ impl<'a> Parser<'a> { } } - // Match and consume a value reference, direct or vtable. + // Match and consume a value reference. fn match_value(&mut self, err_msg: &str) -> ParseResult { if let Some(Token::Value(v)) = self.token() { self.consume();