From 0cf076016f6e489d4350b600e8772e95782a04af Mon Sep 17 00:00:00 2001 From: Thaza_Kun <61819672+Thaza-Kun@users.noreply.github.com> Date: Sun, 7 Apr 2024 02:46:48 +0800 Subject: [PATCH] =?UTF-8?q?=E2=9C=8F=20Typo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- wasm-rs/src/phonotactics.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wasm-rs/src/phonotactics.rs b/wasm-rs/src/phonotactics.rs index 94c4d74..5e6feeb 100644 --- a/wasm-rs/src/phonotactics.rs +++ b/wasm-rs/src/phonotactics.rs @@ -20,7 +20,7 @@ impl Phonotactic { } pub fn parse_syllables<'a>(&'a self, input: &'a String) -> IResult<&'a str, Phrase<&'a str>> { self.definition - .as_str + .as_str() .parse_tags(&input) .map(|(r, p)| (r, p.with_postprocessing(&self.definition))) }