summaryrefslogtreecommitdiff
path: root/src/parse/resolve.rs
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2021-11-06 12:12:02 +0100
committerLaurenz <laurmaedje@gmail.com>2021-11-06 15:49:39 +0100
commit41bdafb5785dd85d20a3e79900b18e0010f6d71d (patch)
treeb2466b87e7da2b99256d7d1e08a644185e5879f3 /src/parse/resolve.rs
parent515fe89c5ea94e6bcdcfe387d006776d31ad3646 (diff)
Faster parser
Diffstat (limited to 'src/parse/resolve.rs')
-rw-r--r--src/parse/resolve.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/parse/resolve.rs b/src/parse/resolve.rs
index 3fab98a4..b330dbd6 100644
--- a/src/parse/resolve.rs
+++ b/src/parse/resolve.rs
@@ -172,8 +172,8 @@ mod tests {
test("typst\n it!", "typst", "\n it!");
test("typst\n it!", "typst", "\n it!");
test("abc`", "abc", "`");
- test(" hi", "", " hi");
- test("`", "", "`");
+ test(" hi", "", " hi");
+ test("`", "", "`");
}
#[test]