mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-01 10:52:18 +00:00
Fix TypeAnnotation::Tuple comment
This commit is contained in:
parent
848c18f996
commit
a1432d1a14
1 changed files with 2 additions and 2 deletions
|
@ -535,8 +535,8 @@ pub enum TypeAnnotation<'a> {
|
|||
|
||||
Tuple {
|
||||
fields: Collection<'a, Loc<TypeAnnotation<'a>>>,
|
||||
/// The row type variable in an open record, e.g. the `r` in `{ name: Str }r`.
|
||||
/// This is None if it's a closed record annotation like `{ name: Str }`.
|
||||
/// The row type variable in an open tuple, e.g. the `r` in `( Str, Str )r`.
|
||||
/// This is None if it's a closed tuple annotation like `( Str, Str )`.
|
||||
ext: Option<&'a Loc<TypeAnnotation<'a>>>,
|
||||
},
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue