diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-06-09 14:28:59 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-06-09 14:28:59 +0200 |
commit | 344c3db875056d4aec509f24fb2dbeaf7e2a14b6 (patch) | |
tree | 88210fc3caeadccc93abf699936f78d7e6fe1396 /src/content/flow.rs | |
parent | cba78821ed13d5a92c74d092914fbad4c842f889 (diff) | |
download | markdown-rs-344c3db875056d4aec509f24fb2dbeaf7e2a14b6.tar.gz markdown-rs-344c3db875056d4aec509f24fb2dbeaf7e2a14b6.tar.bz2 markdown-rs-344c3db875056d4aec509f24fb2dbeaf7e2a14b6.zip |
Refactor to pass more slices around
Diffstat (limited to 'src/content/flow.rs')
-rw-r--r-- | src/content/flow.rs | 2 |
1 files changed, 1 insertions, 1 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); |