Skip to content

Commit 77be7fd

Browse files
authored
ci: textlintのエラーの抑制を無効化 (#153)
1 parent 1de3fe9 commit 77be7fd

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

.github/workflows/deploy.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ jobs:
4040
run: bun install --frozen-lockfile
4141
- name: Lint Markdown using textlint
4242
run: bun run --bun textlint-md
43-
continue-on-error: true
4443

4544
textlint-html:
4645
runs-on: ubuntu-24.04
@@ -58,4 +57,3 @@ jobs:
5857
run: bun install --frozen-lockfile
5958
- name: Lint HTML using textlint
6059
run: bun run --bun textlint-html
61-
continue-on-error: true

crates/typst-library/src/model/reference.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ use crate::text::TextElem;
6161
/// # Syntax
6262
/// この機能には専用の記法も用意されています。
6363
/// `{"normal"}` の参照を作成するためには`@`に続けてラベル名を入力します。
64-
/// (たとえば`[= Introduction <intro>]`というラベルを参照するには`[@intro]`と入力します
64+
/// (たとえば`[= Introduction <intro>]`というラベルを参照するには`[@intro]`と入力します)
6565
///
6666
/// 補足語をカスタマイズするには、
6767
/// `[@intro[Chapter]]`のように、参照の後に角括弧でコンテンツを追加します。

0 commit comments

Comments
 (0)