diff --git a/src/reader.rs b/src/reader.rs index 57d4524..5ef4dea 100644 --- a/src/reader.rs +++ b/src/reader.rs @@ -108,7 +108,7 @@ impl Reader { } else if tk.starts_with(':') { return Ok(Key(format!("ʞ{}", tk))); } - return Ok(Sym(tk.to_string())); + Ok(Sym(tk.to_string())) } } }