update DefaultAllocator docs to say ArrayStorage instead of GenericArray

This commit is contained in:
Ritoban Roy-Chowdhury 2022-08-08 17:48:10 -07:00
parent 11ff2ed69b
commit d3b7acce4d
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ use std::mem::{ManuallyDrop, MaybeUninit};
* Allocator. * Allocator.
* *
*/ */
/// An allocator based on `GenericArray` and `VecStorage` for statically-sized and dynamically-sized /// An allocator based on [`ArrayStorage`] and [`VecStorage`] for statically-sized and dynamically-sized
/// matrices respectively. /// matrices respectively.
#[derive(Copy, Clone, Debug)] #[derive(Copy, Clone, Debug)]
pub struct DefaultAllocator; pub struct DefaultAllocator;