diff options
| author | Pietro Albini <pietro@pietroalbini.org> | 2018-11-15 11:04:42 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-11-15 11:04:42 +0100 |
| commit | 66fcb3ceb2700ce0d05862305c56097a41f0e69f (patch) | |
| tree | 5cecff9465133e71511b7be14ffd0c627a85573e /src/libsyntax | |
| parent | fb4553299ca2717e6c106cd6db36b7dc6c959aac (diff) | |
| parent | 4e35cbb22eceac145a6f794cde869b3684e0b1d5 (diff) | |
| download | rust-66fcb3ceb2700ce0d05862305c56097a41f0e69f.tar.gz rust-66fcb3ceb2700ce0d05862305c56097a41f0e69f.zip | |
Rollup merge of #55901 - euclio:speling, r=petrochenkov
fix various typos in doc comments
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/tokenstream.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/tokenstream.rs b/src/libsyntax/tokenstream.rs index 29bd63d28c5..cfdd4340a19 100644 --- a/src/libsyntax/tokenstream.rs +++ b/src/libsyntax/tokenstream.rs @@ -150,7 +150,7 @@ impl TokenTree { } } - /// Modify the `TokenTree`'s span inplace. + /// Modify the `TokenTree`'s span in-place. pub fn set_span(&mut self, span: Span) { match *self { TokenTree::Token(ref mut sp, _) => *sp = span, |
