From c9c6e22f4baf060cfb42b4a99de6aeba22acbe9d Mon Sep 17 00:00:00 2001 From: Yuri Astrakhan Date: Wed, 30 Mar 2022 15:50:27 -0400 Subject: [PATCH] Remove bad rustdoc trailing backslash --- compiler/rustc_monomorphize/src/collector.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/rustc_monomorphize/src/collector.rs b/compiler/rustc_monomorphize/src/collector.rs index 1477bc28cff..66941e49a9a 100644 --- a/compiler/rustc_monomorphize/src/collector.rs +++ b/compiler/rustc_monomorphize/src/collector.rs @@ -975,7 +975,7 @@ fn should_codegen_locally<'tcx>(tcx: TyCtxt<'tcx>, instance: &Instance<'tcx>) -> /// this function finds the pair of types that determines the vtable linking /// them. /// -/// For example, the source type might be `&SomeStruct` and the target type\ +/// For example, the source type might be `&SomeStruct` and the target type /// might be `&SomeTrait` in a cast like: /// /// let src: &SomeStruct = ...;