diff options
| author | Dylan DPC <dylan.dpc@gmail.com> | 2020-02-13 21:28:12 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-02-13 21:28:12 +0100 |
| commit | 0bdf568ce4a9772aab0ae0cff9ba2774b02e8b3d (patch) | |
| tree | 6ccce7f0d8057e6cfe022a3b8125060adcecbbc3 /src | |
| parent | a8a2c141ecc66274690a81e692ea982eb557e7ec (diff) | |
| parent | 026dec550002356ea52a0800db5de0f361631f56 (diff) | |
| download | rust-0bdf568ce4a9772aab0ae0cff9ba2774b02e8b3d.tar.gz rust-0bdf568ce4a9772aab0ae0cff9ba2774b02e8b3d.zip | |
Rollup merge of #69135 - drewrip:drewrip-spelling, r=jonas-schievink
Spelling error "represening" to "representing" Small spelling mistake I noticed when looking through the Rust lexer.
Diffstat (limited to 'src')
| -rw-r--r-- | src/librustc_lexer/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_lexer/src/lib.rs b/src/librustc_lexer/src/lib.rs index 969ce9b06e8..25334461a11 100644 --- a/src/librustc_lexer/src/lib.rs +++ b/src/librustc_lexer/src/lib.rs @@ -35,7 +35,7 @@ impl Token { } } -/// Enum represening common lexeme types. +/// Enum representing common lexeme types. #[derive(Clone, Copy, Debug, PartialEq, Eq, PartialOrd, Ord)] pub enum TokenKind { // Multi-char tokens: |
