Fix some typos

This commit is contained in:
David Lattimore 2020-06-30 10:43:37 +10:00
parent 2bd7171399
commit ef49bbeec4
5 changed files with 7 additions and 7 deletions

View file

@ -55,7 +55,7 @@ impl FromStr for SsrRule {
let pattern = it.next().expect("at least empty string").trim();
let template = it
.next()
.ok_or_else(|| SsrError("Cannot find delemiter `==>>`".into()))?
.ok_or_else(|| SsrError("Cannot find delimiter `==>>`".into()))?
.trim()
.to_string();
if it.next().is_some() {