aboutsummaryrefslogtreecommitdiffstats
path: root/src/content/string.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/content/string.rs')
-rw-r--r--src/content/string.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/content/string.rs b/src/content/string.rs
index fad2b6a..5a3149a 100644
--- a/src/content/string.rs
+++ b/src/content/string.rs
@@ -29,7 +29,7 @@ const MARKERS: [Code; 5] = [
/// Before string.
pub fn start(tokenizer: &mut Tokenizer, code: Code) -> State {
match code {
- Code::None => State::Ok(0),
+ Code::None => State::Ok,
_ => tokenizer.attempt_n(
vec![
Box::new(character_reference),