aboutsummaryrefslogtreecommitdiffstats
path: root/src/content/string.rs
diff options
context:
space:
mode:
authorLibravatar Titus Wormer <tituswormer@gmail.com>2022-06-09 14:28:59 +0200
committerLibravatar Titus Wormer <tituswormer@gmail.com>2022-06-09 14:28:59 +0200
commit344c3db875056d4aec509f24fb2dbeaf7e2a14b6 (patch)
tree88210fc3caeadccc93abf699936f78d7e6fe1396 /src/content/string.rs
parentcba78821ed13d5a92c74d092914fbad4c842f889 (diff)
downloadmarkdown-rs-344c3db875056d4aec509f24fb2dbeaf7e2a14b6.tar.gz
markdown-rs-344c3db875056d4aec509f24fb2dbeaf7e2a14b6.tar.bz2
markdown-rs-344c3db875056d4aec509f24fb2dbeaf7e2a14b6.zip
Refactor to pass more slices around
Diffstat (limited to '')
-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 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);