Skip to content

Commit e0ff39b

Browse files
authored
Fixed typos and grammar in lib/Syntax/README.md
Incorporated suggestions from others.
1 parent 880698e commit e0ff39b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/Syntax/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -163,8 +163,8 @@ struct YourStruct {}
163163
At any point in the building process, you can call `build()` and get a
164164
reasonably formed Syntax node (i.e. with no raw `nullptr`s) using what you've
165165
provided to the builder so far. Anything that you haven't supplied is marked as
166-
*missing*. This is essentially what the parser does, so looking forward to
167-
future adoption the builders are designed with the parser in mind, with the
166+
*missing*. This is essentially what the parser does, solooking forward to
167+
future adoptionthe builders are designed with the parser in mind, with the
168168
hope that we can better specify recovery behavior and incremental (re-)parsing.
169169

170170
**Example**
@@ -175,7 +175,7 @@ StructDeclSyntaxBuilder Builder;
175175
// We previously parsed a struct keyword, let's tell the builder to use it.
176176
Builder.useStructKeyword(StructKeyword);
177177

178-
// Hmm, we didn't see an identifier, but saw a left brace. Let's keep going.
178+
// Hm, we didn't see an identifier, but saw a left brace. Let's keep going.
179179
Builder.useLeftBrace(ParsedLeftBrace)
180180

181181
// No members of the struct; we saw a right brace.

0 commit comments

Comments
 (0)