about summary refs log tree commit diff
path: root/src/libsyntax
diff options
context:
space:
mode:
authorTakanori Ishibashi <takanori.1112@gmail.com>2018-05-27 09:47:04 +0900
committerTakanori Ishibashi <takanori.1112@gmail.com>2018-05-27 09:47:04 +0900
commitf386cdae19bdcee5a4f63468bb42d2a8b5759fec (patch)
tree6414866d6f2785ce7be43baf4aabe471dbd72511 /src/libsyntax
parent5015fa346c1bf7e295fc16996ed0d3309c84f09a (diff)
downloadrust-f386cdae19bdcee5a4f63468bb42d2a8b5759fec.tar.gz
rust-f386cdae19bdcee5a4f63468bb42d2a8b5759fec.zip
innacurate -> inaccurate
Diffstat (limited to 'src/libsyntax')
-rw-r--r--src/libsyntax/ext/tt/macro_parser.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/ext/tt/macro_parser.rs b/src/libsyntax/ext/tt/macro_parser.rs
index 058317e05c7..b53d94db27e 100644
--- a/src/libsyntax/ext/tt/macro_parser.rs
+++ b/src/libsyntax/ext/tt/macro_parser.rs
@@ -18,7 +18,7 @@
 //! `NamedMatch`es at the very end. It'd be a pain, and require more memory to keep around old
 //! items, but it would also save overhead)
 //!
-//! We don't say this parser uses the Earley algorithm, because it's unnecessarily innacurate.
+//! We don't say this parser uses the Earley algorithm, because it's unnecessarily inaccurate.
 //! The macro parser restricts itself to the features of finite state automata. Earley parsers
 //! can be described as an extension of NFAs with completion rules, prediction rules, and recursion.
 //!