Skip to content
Open
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
4 changes: 2 additions & 2 deletions structures_and_records.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,9 +178,9 @@ fields were defined. Lean therefore provides the following alternative
notations for defining elements of a structure type.

```
{ (<field-name> := <expr>)* : structure-type }
{ (<field-name> := <expr>,)* : structure-type }
or
{ (<field-name> := <expr>)* }
{ (<field-name> := <expr>,)* }
```

The suffix ``: structure-type`` can be omitted whenever the name of
Expand Down