From 3c5aaf2b8112db5fe4477dccdea039efe414157e Mon Sep 17 00:00:00 2001 From: p0ny <907577610@qq.com> Date: Sat, 13 Aug 2022 18:15:24 +0800 Subject: [PATCH] fix: typo (#213) --- dump-parser/src/mysql/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dump-parser/src/mysql/mod.rs b/dump-parser/src/mysql/mod.rs index d28a1491..a5a0b895 100644 --- a/dump-parser/src/mysql/mod.rs +++ b/dump-parser/src/mysql/mod.rs @@ -11,7 +11,7 @@ use crate::mysql::Keyword::{ pub enum Token { /// An end-of-file marker, not a real token EOF, - /// An signed numeric literal + /// A signed numeric literal Number(String, bool), /// TABLE instruction Word(Word),