From c4376ba24a488bf78003e35427d06e52b8b7479f Mon Sep 17 00:00:00 2001 From: Jack Huey <31162821+jackh726@users.noreply.github.com> Date: Sun, 17 Jan 2021 12:50:04 -0500 Subject: [PATCH] Whitespace and typo --- compiler/rustc_middle/src/ty/sty.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/rustc_middle/src/ty/sty.rs b/compiler/rustc_middle/src/ty/sty.rs index e08233b545d27..e53977b5eb978 100644 --- a/compiler/rustc_middle/src/ty/sty.rs +++ b/compiler/rustc_middle/src/ty/sty.rs @@ -956,7 +956,7 @@ impl<'tcx> PolyExistentialTraitRef<'tcx> { /// type from `Binder` to just `T` (see /// e.g., `liberate_late_bound_regions`). /// -/// `Decodable` and `Encodable` is implemented for `Binder` using the `impl_binder_encode_decode!` macro. +/// `Decodable` and `Encodable` are implemented for `Binder` using the `impl_binder_encode_decode!` macro. #[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Debug)] pub struct Binder(T);