summaryrefslogtreecommitdiff
path: root/tests/typ/math/matrix.typ
diff options
context:
space:
mode:
authorAlex Saveau <saveau.alexandre@gmail.com>2023-04-19 10:08:59 -0700
committerGitHub <noreply@github.com>2023-04-19 19:08:59 +0200
commitb285bea41de7bea0ea33878d812fd4a046913128 (patch)
tree264023ec2642df51ebf87e2eb638d46cd3e63b58 /tests/typ/math/matrix.typ
parentf08ae95b9d8be5165f9c8cac4c755d0510c3a18a (diff)
Make `dot` be multiplication and add `dot.period` for periods (#747)
Diffstat (limited to 'tests/typ/math/matrix.typ')
-rw-r--r--tests/typ/math/matrix.typ10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/typ/math/matrix.typ b/tests/typ/math/matrix.typ
index e57e102e..c1fba627 100644
--- a/tests/typ/math/matrix.typ
+++ b/tests/typ/math/matrix.typ
@@ -3,12 +3,12 @@
---
// Test semicolon syntax.
#set align(center)
-$mat() dot.op
- mat(;) dot.op
- mat(1, 2) dot.op
+$mat() dot
+ mat(;) dot
+ mat(1, 2) dot
mat(1, 2;) \
- mat(1; 2) dot.op
- mat(1, 2; 3, 4) dot.op
+ mat(1; 2) dot
+ mat(1, 2; 3, 4) dot
mat(1 + &2, 1/2; &3, 4)$
---