Skip to content

Commit cfc1aa3

Browse files
committed
Fix a typo in a comment.
1 parent d16b1f4 commit cfc1aa3

File tree

1 file changed

+3
-3
lines changed
  • compiler/rustc_parse/src/parser

1 file changed

+3
-3
lines changed

compiler/rustc_parse/src/parser/mod.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -265,9 +265,9 @@ impl TokenCursor {
265265
#[inline(always)]
266266
fn inlined_next(&mut self) -> (Token, Spacing) {
267267
loop {
268-
// FIXME: we currently don't return `Delimiter` open/close delims. To fix #67062 we will
269-
// need to, whereupon the `delim != Delimiter::Invisible` conditions below can be
270-
// removed.
268+
// FIXME: we currently don't return `Delimiter::Invisible` open/close delims. To fix
269+
// #67062 we will need to, whereupon the `delim != Delimiter::Invisible` conditions
270+
// below can be removed.
271271
if let Some(tree) = self.tree_cursor.next_ref() {
272272
match tree {
273273
&TokenTree::Token(ref token, spacing) => {

0 commit comments

Comments
 (0)