diff options
Diffstat (limited to 'src/poem/anthology.rs')
-rw-r--r-- | src/poem/anthology.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/poem/anthology.rs b/src/poem/anthology.rs index 79f48f2..7766f62 100644 --- a/src/poem/anthology.rs +++ b/src/poem/anthology.rs @@ -43,7 +43,7 @@ pub fn lookup(verb: &str) -> Option<usize> { /// ... /// } /// ``` -pub fn incant(verse: &Verse, out: &mut String, index: usize, env: &mut Environment) -> i32 { +pub fn incant(verse: &Verse, out: &mut Vec<u8>, index: usize, env: &mut Environment) -> i32 { let verb = INDEX[index]; match verb { "alias" => alias::incant(verse, out, &mut env.aliases), |