Skip to content

Commit

Permalink
Merge pull request #843 from lean-ja/Seasawher/issue836
Browse files Browse the repository at this point in the history
属性を [ ] で囲っていない箇所がある
  • Loading branch information
Seasawher authored Sep 20, 2024
2 parents 6341fce + 1527a7a commit 4da3262
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Examples/Attribute/InductionEliminator.lean
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ example (xs : Many α) : Many.union xs Many.none = xs := by

simp [Many.union, Many.cons, ih]

/- `induction_eliminator` を設定する前の挙動に戻すには、`using` キーワードに明示的に `.rec` 定理を与えます。 -/
/- `[induction_eliminator]` を設定する前の挙動に戻すには、`using` キーワードに明示的に `.rec` 定理を与えます。 -/

example (xs : Many α) : True := by
-- 明示的に指定すれば, 元の挙動に戻せる
Expand Down
2 changes: 1 addition & 1 deletion Examples/Attribute/InheritDoc.lean
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ end
/-- info: 最初に与えた doc コメント -/
#guard_msgs in #doc greet'

/- `inherit_doc` を使用するのは、記法を導入する際であることが多いでしょう。この場合、ドキュメントコメントの継承元を指定する必要がありません。 -/
/- `[inherit_doc]` 属性を使用するのは、記法を導入する際であることが多いでしょう。この場合、ドキュメントコメントの継承元を指定する必要がありません。 -/

/-- `⊔` という記号のための型クラス -/
class Sup (α : Type) where
Expand Down
2 changes: 1 addition & 1 deletion Examples/Attribute/Simps.lean
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
例えば、ユーザが `Point` という構造体を定義し、`Point` 上の足し算を定義したところを考えましょう。このとき、足し算はフィールドの値の足し算で定義されているため、「`Point` の和の `x` 座標」は `x` 座標の和ですが、これはそのままでは `simp` で示すことができません。`[simps]` 属性を `Point.add` 関数に付与することで、`simp` で示せるようになります。
-/
import Mathlib.Tactic.Simps.Basic -- simps 属性を使うため
import Mathlib.Tactic.Simps.Basic -- [simps] 属性を使うため

@[ext]
structure Point where
Expand Down
2 changes: 1 addition & 1 deletion Examples/Declarative/Local.lean
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ theorem MyNat.zero_add (n : MyNat) : MyNat.add .zero n = n := by
| succ n ih => simp [MyNat.add, ih]

section
-- simp 属性をローカルに付与する
-- [simp] 属性をローカルに付与する
attribute [local simp] MyNat.zero_add

-- その section の中では使用できる
Expand Down
2 changes: 1 addition & 1 deletion Examples/Tactic/WithReducible.lean
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/- # with_reducible
`with_reducible` は、後に続くタクティクの透過度(transparency)を `reducible` に指定して実行します。
透過度 `reducible` では、`[reducible]` の属性を持つ定義だけが展開されます
透過度 `reducible` では、`[reducible]` 属性を持つ定義だけが展開されます
## 用途
Expand Down

0 comments on commit 4da3262

Please sign in to comment.