@@ -37,7 +37,7 @@ impl Delimited {
37
37
token:: CloseDelim ( self . delim )
38
38
}
39
39
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.
41
41
pub fn open_tt ( & self , span : Span ) -> TokenTree {
42
42
let open_span = if span == DUMMY_SP {
43
43
DUMMY_SP
@@ -47,7 +47,7 @@ impl Delimited {
47
47
TokenTree :: Token ( open_span, self . open_token ( ) )
48
48
}
49
49
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.
51
51
pub fn close_tt ( & self , span : Span ) -> TokenTree {
52
52
let close_span = if span == DUMMY_SP {
53
53
DUMMY_SP
@@ -232,7 +232,7 @@ pub fn parse(
232
232
///
233
233
/// # Parameters
234
234
///
235
- /// - `tree`: the tree wish to convert.
235
+ /// - `tree`: the tree we wish to convert.
236
236
/// - `trees`: an iterator over trees. We may need to read more tokens from it in order to finish
237
237
/// converting `tree`
238
238
/// - `expect_matchers`: same as for `parse` (see above).
@@ -327,7 +327,7 @@ where
327
327
/// separator, and `*` is the Kleene operator. This function is specifically concerned with parsing
328
328
/// the last two tokens of such a pattern: namely, the optional separator and the Kleene operator
329
329
/// 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.
331
331
///
332
332
/// This function will take some input iterator `input` corresponding to `span` and a parsing
333
333
/// session `sess`. If the next one (or possibly two) tokens in `input` correspond to a Kleene
0 commit comments