about summary refs log tree commit diff
diff options
context:
space:
mode:
authorYuri Astrakhan <YuriAstrakhan@gmail.com>2022-03-30 15:50:27 -0400
committerYuri Astrakhan <YuriAstrakhan@gmail.com>2022-03-30 15:50:27 -0400
commitc9c6e22f4baf060cfb42b4a99de6aeba22acbe9d (patch)
tree42910563d983f3612a20ccc261234eb2ec54f7c4
parent5160f8f843e1dbd43cf341cc8aa5d917d22c98b9 (diff)
downloadrust-c9c6e22f4baf060cfb42b4a99de6aeba22acbe9d.tar.gz
rust-c9c6e22f4baf060cfb42b4a99de6aeba22acbe9d.zip
Remove bad rustdoc trailing backslash
-rw-r--r--compiler/rustc_monomorphize/src/collector.rs2
1 files changed, 1 insertions, 1 deletions
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 = ...;