From b24980bd1f7773b1dacee94894197e9da2feaa57 Mon Sep 17 00:00:00 2001 From: Jeremy Wall Date: Thu, 3 Jan 2019 10:20:59 -0600 Subject: [PATCH] MAINT: Doc fixes. --- src/iter.rs | 1 + src/tokenizer/mod.rs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/iter.rs b/src/iter.rs index bc45483..99664ac 100644 --- a/src/iter.rs +++ b/src/iter.rs @@ -1,3 +1,4 @@ +//! Input stream wrappers for use in abortable_parser. use std::convert::From; use std::iter::Iterator; diff --git a/src/tokenizer/mod.rs b/src/tokenizer/mod.rs index d98ef69..45f989d 100644 --- a/src/tokenizer/mod.rs +++ b/src/tokenizer/mod.rs @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -//! The tokenization stext_tokene of the ucg compiler. +//! The tokenization stage of the ucg compiler. use std; use abortable_parser::combinators::*;