File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -163,8 +163,8 @@ struct YourStruct {}
163
163
At any point in the building process, you can call ` build() ` and get a
164
164
reasonably formed Syntax node (i.e. with no raw ` nullptr ` s) using what you've
165
165
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, so— looking forward to
167
+ future adoption— the builders are designed with the parser in mind, with the
168
168
hope that we can better specify recovery behavior and incremental (re-)parsing.
169
169
170
170
** Example**
@@ -175,7 +175,7 @@ StructDeclSyntaxBuilder Builder;
175
175
// We previously parsed a struct keyword, let's tell the builder to use it.
176
176
Builder.useStructKeyword(StructKeyword);
177
177
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.
179
179
Builder.useLeftBrace(ParsedLeftBrace)
180
180
181
181
// No members of the struct; we saw a right brace.
You can’t perform that action at this time.
0 commit comments