Skip to content

Commit 942df90

Browse files
Fix broken links (#278)
1 parent 7c5fc33 commit 942df90

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

docs/changelog/0.10.0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ description: Changes in Typst 0.10.0
3131
- More LaTeX commands (e.g. for quotes) are now respected in `.bib` files
3232

3333
## Visualization
34-
- Added support for [patterns]($pattern) as fills and strokes
34+
- Added support for [patterns]($tiling) as fills and strokes
3535
- The `alpha` parameter of the [`components`]($color.components) function on
3636
colors is now a named parameter **(Breaking change)**
3737
- Added support for the [Oklch]($color.oklch) color space

docs/changelog/0.11.1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ description: Changes in Typst 0.11.1
3737

3838
## Export
3939
- Fixed [smart quotes]($smartquote) in PDF outline
40-
- Fixed [patterns]($pattern) with spacing in PDF
40+
- Fixed [patterns]($tiling) with spacing in PDF
4141
- Fixed wrong PDF page labels when [page numbering]($page.numbering) was
4242
disabled after being previously enabled
4343

docs/reference/language/syntax.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -105,18 +105,18 @@ Typstは、最も一般的な文書要素に対する組み込みのマークア
105105
| コードブロック | `{{ let x = 1; x + 2 }}` | [Scripting]($scripting/#blocks) |
106106
| コンテンツブロック | `{[*Hello*]}` | [Scripting]($scripting/#blocks) |
107107
| 括弧付き式 | `{(1 + 2)}` | [Scripting]($scripting/#blocks) |
108-
| 配列 | `{(1, 2, 3)}` | [Array]($type/$array) |
109-
| 辞書 | `{(a: "hi", b: 2)}` | [Dictionary]($type/$dictionary) |
108+
| 配列 | `{(1, 2, 3)}` | [Array]($array) |
109+
| 辞書 | `{(a: "hi", b: 2)}` | [Dictionary]($dictionary) |
110110
| 単項演算子 | `{-x}` | [Scripting]($scripting/#operators) |
111111
| 二項演算子 | `{x + y}` | [Scripting]($scripting/#operators) |
112112
| 代入 | `{x = 1}` | [Scripting]($scripting/#operators) |
113113
| フィールドアクセス | `{x.y}` | [Scripting]($scripting/#fields) |
114114
| メソッド呼び出し | `{x.flatten()}` | [Scripting]($scripting/#methods) |
115-
| 関数呼び出し | `{min(x, y)}` | [Function]($type/$function) |
116-
| 引数展開 | `{min(..nums)}` | [Arguments]($type/$arguments) |
117-
| 無名関数 | `{(x, y) => x + y}` | [Function]($type/$function) |
115+
| 関数呼び出し | `{min(x, y)}` | [Function]($function) |
116+
| 引数展開 | `{min(..nums)}` | [Arguments]($arguments) |
117+
| 無名関数 | `{(x, y) => x + y}` | [Function]($function) |
118118
| letバインディング | `{let x = 1}` | [Scripting]($scripting/#bindings) |
119-
| 名前付き関数 | `{let f(x) = 2 * x}` | [Function]($type/$function) |
119+
| 名前付き関数 | `{let f(x) = 2 * x}` | [Function]($function) |
120120
| setルール | `{set text(14pt)}` | [Styling]($styling/#set-rules) |
121121
| set-ifルール | `{set text(..) if .. }` | [Styling]($styling/#set-rules) |
122122
| show-setルール | `{show heading: set block(..)}` | [Styling]($styling/#show-rules) |
@@ -127,7 +127,7 @@ Typstは、最も一般的な文書要素に対する組み込みのマークア
127127
| forループ | `{for x in (1, 2, 3) {..}}` | [Scripting]($scripting/#loops) |
128128
| whileループ | `{while x < 10 {..}}` | [Scripting]($scripting/#loops) |
129129
| ループ制御フロー | `{break, continue}` | [Scripting]($scripting/#loops) |
130-
| 関数からのリターン | `{return x}` | [Function]($type/$function) |
130+
| 関数からのリターン | `{return x}` | [Function]($function) |
131131
| モジュールをインクルード | `{include "bar.typ"}` | [Scripting]($scripting/#modules) |
132132
| モジュールをインポート | `{import "bar.typ"}` | [Scripting]($scripting/#modules) |
133133
| モジュールからのインポート | `{import "bar.typ": a, b, c}` | [Scripting]($scripting/#modules) |

0 commit comments

Comments
 (0)