Rollup merge of #114174 - tshepang:patch-6, r=workingjubilee

doc: replace wrong punctuation mark
This commit is contained in:
Matthias Krüger 2023-07-29 06:13:08 +02:00 committed by GitHub
commit c6c1008b18
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,7 +22,7 @@
/// Types express that they can be borrowed as some type `T` by implementing
/// `Borrow<T>`, providing a reference to a `T` in the traits
/// [`borrow`] method. A type is free to borrow as several different types.
/// If it wishes to mutably borrow as the type allowing the underlying data
/// If it wishes to mutably borrow as the type, allowing the underlying data
/// to be modified, it can additionally implement [`BorrowMut<T>`].
///
/// Further, when providing implementations for additional traits, it needs