summaryrefslogtreecommitdiff
path: root/tests/typ/code
diff options
context:
space:
mode:
Diffstat (limited to 'tests/typ/code')
-rw-r--r--tests/typ/code/dict.typ4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/typ/code/dict.typ b/tests/typ/code/dict.typ
index 344d8efc..d791f77b 100644
--- a/tests/typ/code/dict.typ
+++ b/tests/typ/code/dict.typ
@@ -8,11 +8,11 @@
{(:)}
// Two pairs and string key.
-#let dict = (normal: 1, "spaced key": 2)
+#let dict = (normal: 1, "spacy key": 2)
#dict
#test(dict.normal, 1)
-#test(dict("spaced key"), 2)
+#test(dict("spacy key"), 2)
---
// Test lvalue and rvalue access.