summaryrefslogtreecommitdiff
path: root/docs/guides
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2023-09-16 11:44:39 +0200
committerLaurenz <laurmaedje@gmail.com>2023-09-16 11:44:39 +0200
commit961d70dadec2872a139018ae2aaf936f5b179251 (patch)
tree3d55cf58484e89dc8bf03ffc4db0d219bee75c92 /docs/guides
parent94380f445740b1b05305d649293fabcc16a7d836 (diff)
Fix multiplication table
Diffstat (limited to 'docs/guides')
-rw-r--r--docs/guides/page-setup.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/guides/page-setup.md b/docs/guides/page-setup.md
index fb29acc1..47e40c43 100644
--- a/docs/guides/page-setup.md
+++ b/docs/guides/page-setup.md
@@ -487,8 +487,8 @@ them. Typst will revert to the page settings from the set rule after the call.
#table(
columns: 5 * (1fr,),
- ..for x in range(1, 6) {
- for y in range(1, 10) {
+ ..for x in range(1, 10) {
+ for y in range(1, 6) {
(str(x*y),)
}
}