diff options
| author | kennytm <kennytm@gmail.com> | 2019-01-05 23:56:59 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-01-05 23:56:59 +0800 |
| commit | ab55ecf4ba607985db28678b8bbe846d567a35d5 (patch) | |
| tree | 1aa4a2b518f03f4971c56cc6141096a681e9470d /src/libsyntax | |
| parent | 676b0b0cc4f3a9801051696b3f7b88e75c7b9764 (diff) | |
| parent | 06243b1f4d3d8aba1ef1d2050378baab689250c3 (diff) | |
| download | rust-ab55ecf4ba607985db28678b8bbe846d567a35d5.tar.gz rust-ab55ecf4ba607985db28678b8bbe846d567a35d5.zip | |
Rollup merge of #57314 - wiktorkuchta:master, r=Centril
Fix repeated word typos Inspired by #57295 (I skipped 'be be' because of it) and my [PR in another repo ](https://github.com/e-maxx-eng/e-maxx-eng/pull/389) Not a stupid `sed`, I actually tried to fix case by case.
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/ext/tt/macro_parser.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/ext/tt/macro_parser.rs b/src/libsyntax/ext/tt/macro_parser.rs index 970796a2136..d55f785bd9b 100644 --- a/src/libsyntax/ext/tt/macro_parser.rs +++ b/src/libsyntax/ext/tt/macro_parser.rs @@ -161,7 +161,7 @@ struct MatcherPos<'root, 'tt: 'root> { /// The position of the "dot" in this matcher idx: usize, - /// The first span of source source that the beginning of this matcher corresponds to. In other + /// The first span of source that the beginning of this matcher corresponds to. In other /// words, the token in the source whose span is `sp_open` is matched against the first token of /// the matcher. sp_open: Span, |
