Remove bad rustdoc trailing backslash

This commit is contained in:
Yuri Astrakhan 2022-03-30 15:50:27 -04:00
parent 5160f8f843
commit c9c6e22f4b

View File

@ -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 = ...;