Auto merge of #98038 - TaKO8Ki:remove-unnecessary-space-in-doc, r=compiler-errors

Remove an unnecessary space in doc
This commit is contained in:
bors 2022-06-13 04:26:05 +00:00
commit 083721a1a7

View File

@ -2199,7 +2199,7 @@ mod use_keyword {}
/// pub enum Cow<'a, B>
/// where
/// B: 'a + ToOwned + ?Sized,
/// {
/// {
/// Borrowed(&'a B),
/// Owned(<B as ToOwned>::Owned),
/// }