Skip to content

Commit 5762942

Browse files
committed
fix typos
1 parent ca0c080 commit 5762942

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/libsyntax/ext/tt/quoted.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ impl Delimited {
3737
token::CloseDelim(self.delim)
3838
}
3939

40-
/// Return a `self::TokenTree` witha a `Span` corresponding to the opening delimiter.
40+
/// Return a `self::TokenTree` with a `Span` corresponding to the opening delimiter.
4141
pub fn open_tt(&self, span: Span) -> TokenTree {
4242
let open_span = if span == DUMMY_SP {
4343
DUMMY_SP
@@ -47,7 +47,7 @@ impl Delimited {
4747
TokenTree::Token(open_span, self.open_token())
4848
}
4949

50-
/// Return a `self::TokenTree` witha a `Span` corresponding to the closing delimiter.
50+
/// Return a `self::TokenTree` with a `Span` corresponding to the closing delimiter.
5151
pub fn close_tt(&self, span: Span) -> TokenTree {
5252
let close_span = if span == DUMMY_SP {
5353
DUMMY_SP
@@ -232,7 +232,7 @@ pub fn parse(
232232
///
233233
/// # Parameters
234234
///
235-
/// - `tree`: the tree wish to convert.
235+
/// - `tree`: the tree we wish to convert.
236236
/// - `trees`: an iterator over trees. We may need to read more tokens from it in order to finish
237237
/// converting `tree`
238238
/// - `expect_matchers`: same as for `parse` (see above).
@@ -327,7 +327,7 @@ where
327327
/// separator, and `*` is the Kleene operator. This function is specifically concerned with parsing
328328
/// the last two tokens of such a pattern: namely, the optional separator and the Kleene operator
329329
/// itself. Note that here we are parsing the _macro_ itself, rather than trying to match some
330-
/// stream of tokens in an invokation of a macro.
330+
/// stream of tokens in an invocation of a macro.
331331
///
332332
/// This function will take some input iterator `input` corresponding to `span` and a parsing
333333
/// session `sess`. If the next one (or possibly two) tokens in `input` correspond to a Kleene

0 commit comments

Comments
 (0)