Skip to content

Commit b84f32e

Browse files
committed
parser: fix typos
1 parent d5a40fe commit b84f32e

File tree

1 file changed

+2
-2
lines changed
  • language-powerquery/src/Language/PowerQuery

1 file changed

+2
-2
lines changed

language-powerquery/src/Language/PowerQuery/Parser.y

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ section :: { Section Annotation }
220220
section
221221
: literal_attributes__opt 'section' section_name__opt ';' section_members__opt { Section $1 $3 $5 (Just Annotation) }
222222

223-
literal_attributes__opt :: { Maybe (RecordLiteral annotation) }
223+
literal_attributes__opt :: { Maybe (RecordLiteral Annotation) }
224224
literal_attributes__opt
225225
: literal_attributes { Just $1 }
226226
| {- empty -} { Nothing}
@@ -230,7 +230,7 @@ section_name__opt
230230
: section_name { Just $1 }
231231
| {- empty -} { Nothing }
232232

233-
section_members__opt :: { Maybe [SectionMember annotation] }
233+
section_members__opt :: { Maybe [SectionMember Annotation] }
234234
section_members__opt
235235
: section_members { Just $1 }
236236
| {- empty -} { Nothing }

0 commit comments

Comments
 (0)