From 9dc53a202744cb444d25791ac34f80f880490f24 Mon Sep 17 00:00:00 2001 From: Michael Wheeler Date: Wed, 8 Mar 2017 19:45:54 -0500 Subject: [PATCH] Fix doc typo --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index c438b015..3ab97b6d 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -25,7 +25,7 @@ which can be used together with rust-encoding or encoding-rs. * Take (at least) a `input: &mut cssparser::Parser` parameter * Return `Result<_, ()>` * When returning `Ok(_)`, - the function must have consume exactly the amount of input that represents the parsed value. + the function must have consumed exactly the amount of input that represents the parsed value. * When returning `Err(())`, any amount of input may have been consumed. As a consequence, when calling another parsing function, either: