Skip to content

Commit bb999f7

Browse files
Rollup merge of #81515 - eltociear:patch-7, r=jonas-schievink
Fix typo in pat.rs parentesized -> parenthesized
2 parents e56472c + 718398c commit bb999f7

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

compiler/rustc_parse/src/parser/pat.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ impl<'a> Parser<'a> {
240240
Err(err)
241241
}
242242

243-
/// Parse and throw away a parentesized comma separated
243+
/// Parse and throw away a parenthesized comma separated
244244
/// sequence of patterns until `)` is reached.
245245
fn skip_pat_list(&mut self) -> PResult<'a, ()> {
246246
while !self.check(&token::CloseDelim(token::Paren)) {

0 commit comments

Comments
 (0)