From 06243b1f4d3d8aba1ef1d2050378baab689250c3 Mon Sep 17 00:00:00 2001 From: wiktorkuchta <35867657+wiktorkuchta@users.noreply.github.com> Date: Fri, 4 Jan 2019 17:50:53 +0000 Subject: [PATCH] Fix repeated word in astconv.rs --- src/librustc_typeck/astconv.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/librustc_typeck/astconv.rs b/src/librustc_typeck/astconv.rs index 1db7141917f98..99f02dc8f613c 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};