diff options
| author | Laurenz <laurmaedje@gmail.com> | 2022-06-13 23:16:40 +0200 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2022-06-14 13:53:02 +0200 |
| commit | c81e2a5f56eb262663f292578c683fba7f18251f (patch) | |
| tree | 6c045a8dcbec5e75e01a15f970ef8cee6ff042d0 /tests/typ/code/dict.typ | |
| parent | 891af17260a6750a74a102388a05e59cf1ffc3c1 (diff) | |
Many fixes
Diffstat (limited to 'tests/typ/code/dict.typ')
| -rw-r--r-- | tests/typ/code/dict.typ | 4 |
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. |
