@@ -540,7 +540,7 @@ where
540540 }
541541
542542
543- /// Create an array with uninitalized elements, shape `shape`.
543+ /// Create an array with uninitialized elements, shape `shape`.
544544 ///
545545 /// The uninitialized elements of type `A` are represented by the type `MaybeUninit<A>`,
546546 /// an easier way to handle uninit values correctly.
@@ -598,7 +598,7 @@ where
598598 }
599599 }
600600
601- /// Create an array with uninitalized elements, shape `shape`.
601+ /// Create an array with uninitialized elements, shape `shape`.
602602 ///
603603 /// The uninitialized elements of type `A` are represented by the type `MaybeUninit<A>`,
604604 /// an easier way to handle uninit values correctly.
@@ -634,7 +634,7 @@ where
634634
635635 #[ deprecated( note = "This method is hard to use correctly. Use `uninit` instead." ,
636636 since = "0.15.0" ) ]
637- /// Create an array with uninitalized elements, shape `shape`.
637+ /// Create an array with uninitialized elements, shape `shape`.
638638 ///
639639 /// Prefer to use [`uninit()`](ArrayBase::uninit) if possible, because it is
640640 /// easier to use correctly.
@@ -643,7 +643,7 @@ where
643643 ///
644644 /// ### Safety
645645 ///
646- /// Accessing uninitalized values is undefined behaviour. You must overwrite *all* the elements
646+ /// Accessing uninitialized values is undefined behaviour. You must overwrite *all* the elements
647647 /// in the array after it is created; for example using
648648 /// [`raw_view_mut`](ArrayBase::raw_view_mut) or other low-level element access.
649649 ///
@@ -676,7 +676,7 @@ where
676676 S : DataOwned < Elem = MaybeUninit < A > > ,
677677 D : Dimension ,
678678{
679- /// Create an array with uninitalized elements, shape `shape`.
679+ /// Create an array with uninitialized elements, shape `shape`.
680680 ///
681681 /// This method has been renamed to `uninit`
682682 #[ deprecated( note = "Renamed to `uninit`" , since = "0.15.0" ) ]
0 commit comments