Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion LeanByExample/Parser/AnonymousConstructor.lean
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ structure Hoge where
-- 両者は同じものを表している!
x = y

/- 上の例は構造体の同種のコンストラクタが入れ子になっている例ですが、構造体でも同種のコンストラクタでもなくても平坦化することができます。 -/
/- 上の例は構造体の同種のコンストラクタが入れ子になっている例ですが、`structure` コマンドで定義された型でなくても、同種のコンストラクタでもなくても、同様に平坦化することができます。 -/

/-- Prod を真似て自作した帰納型 -/
inductive MyProd (α β : Type) where
Expand Down