diff options
| author | wiktorkuchta <35867657+wiktorkuchta@users.noreply.github.com> | 2019-01-04 17:50:53 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-01-04 17:50:53 +0000 |
| commit | 06243b1f4d3d8aba1ef1d2050378baab689250c3 (patch) | |
| tree | 9712d975038290be457ba5b7db4c8b6467b6473f | |
| parent | 632d58436ac5258ca9c0bc25d7a07d3a76302174 (diff) | |
| download | rust-06243b1f4d3d8aba1ef1d2050378baab689250c3.tar.gz rust-06243b1f4d3d8aba1ef1d2050378baab689250c3.zip | |
Fix repeated word in astconv.rs
| -rw-r--r-- | src/librustc_typeck/astconv.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/librustc_typeck/astconv.rs b/src/librustc_typeck/astconv.rs index 1db7141917f..99f02dc8f61 100644 --- a/src/librustc_typeck/astconv.rs +++ b/src/librustc_typeck/astconv.rs @@ -1,6 +1,6 @@ //! Conversion from AST representation of types to the `ty.rs` representation. -//! The main routine here is `ast_ty_to_ty()`; each use is is parameterized by -//! an instance of `AstConv`. +//! The main routine here is `ast_ty_to_ty()`; each use is parameterized by an +//! instance of `AstConv`. use errors::{Applicability, FatalError, DiagnosticId}; use hir::{self, GenericArg, GenericArgs}; |
