@@ -311,7 +311,7 @@ impl<T> Arc<T> {
311311 Self :: from_inner ( Box :: into_raw_non_null ( x) )
312312 }
313313
314- /// Construct a Arc box with uninitialized contents.
314+ /// Constructs a new `Arc` with uninitialized contents.
315315 ///
316316 /// # Examples
317317 ///
@@ -393,7 +393,7 @@ impl<T> Arc<T> {
393393}
394394
395395impl < T > Arc < [ T ] > {
396- /// Construct a new reference-counted slice with uninitialized contents.
396+ /// Constructs a new reference-counted slice with uninitialized contents.
397397 ///
398398 /// # Examples
399399 ///
@@ -425,7 +425,7 @@ impl<T> Arc<[T]> {
425425}
426426
427427impl < T > Arc < mem:: MaybeUninit < T > > {
428- /// Convert to `Arc<T>`.
428+ /// Converts to `Arc<T>`.
429429 ///
430430 /// # Safety
431431 ///
@@ -464,7 +464,7 @@ impl<T> Arc<mem::MaybeUninit<T>> {
464464}
465465
466466impl < T > Arc < [ mem:: MaybeUninit < T > ] > {
467- /// Convert to `Arc<[T]>`.
467+ /// Converts to `Arc<[T]>`.
468468 ///
469469 /// # Safety
470470 ///
@@ -1106,7 +1106,7 @@ impl<T: ?Sized> Arc<T> {
11061106 ///
11071107 /// Any other `Arc` or [`Weak`] pointers to the same value must not be dereferenced
11081108 /// for the duration of the returned borrow.
1109- /// This is trivially the case if no such pointer exist,
1109+ /// This is trivially the case if no such pointers exist,
11101110 /// for example immediately after `Arc::new`.
11111111 ///
11121112 /// # Examples
0 commit comments