diff options
| author | omniwrench <44841357+omniwrench@users.noreply.github.com> | 2024-09-22 17:15:01 +0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-22 12:15:01 +0000 |
| commit | cb550d9c76151fe544380ac67f8c0855397cf4fe (patch) | |
| tree | 6a06a4333369ed7fa1948a2ba8465b9a1f4b87f8 /docs | |
| parent | f283995c3dda341b066651f7a9e6dac35f46ea70 (diff) | |
Fix `table` docs guide example (#4996)
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/guides/tables.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/guides/tables.md b/docs/guides/tables.md index dbeb3955..9a61117d 100644 --- a/docs/guides/tables.md +++ b/docs/guides/tables.md @@ -242,10 +242,10 @@ Let's start with an example of a horizontally striped table: #set text(font: "IBM Plex Sans") // Medium bold table header. -#show table.cell.where(x: 1): set text(weight: "medium") +#show table.cell.where(y: 0): set text(weight: "medium") // Bold titles. -#show table.cell.where(y: 0): set text(weight: "bold") +#show table.cell.where(x: 1): set text(weight: "bold") // See the strokes section for details on this! #let frame(stroke) = (x, y) => ( |
