diff options
Diffstat (limited to 'src/content')
-rw-r--r-- | src/content/flow.rs | 2 | ||||
-rw-r--r-- | src/content/string.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/content/flow.rs b/src/content/flow.rs index ac987e1..693ffb5 100644 --- a/src/content/flow.rs +++ b/src/content/flow.rs @@ -32,7 +32,7 @@ use crate::util::get_span; /// Turn `codes` as the flow content type into events. // To do: remove this `allow` when all the content types are glued together. #[allow(dead_code)] -pub fn flow(codes: Vec<Code>) -> Vec<Event> { +pub fn flow(codes: &[Code]) -> Vec<Event> { let mut tokenizer = Tokenizer::new(); let (state, remainder) = tokenizer.feed(codes, Box::new(start), true); diff --git a/src/content/string.rs b/src/content/string.rs index a8a81b2..1239a36 100644 --- a/src/content/string.rs +++ b/src/content/string.rs @@ -18,7 +18,7 @@ use crate::tokenizer::{Code, Event, State, StateFnResult, TokenType, Tokenizer}; /// Turn `codes` as the string content type into events. // To do: remove this `allow` when all the content types are glued together. #[allow(dead_code)] -pub fn string(codes: Vec<Code>) -> Vec<Event> { +pub fn string(codes: &[Code]) -> Vec<Event> { let mut tokenizer = Tokenizer::new(); let (state, remainder) = tokenizer.feed(codes, Box::new(before), true); |