Merge pull request #1138 from ritobanrc/doc-fix

Update DefaultAllocator docs to say ArrayStorage instead of GenericArray
This commit is contained in:
Sébastien Crozet 2022-08-09 09:35:04 +02:00 committed by GitHub
commit 2aff922ac8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ use std::mem::{ManuallyDrop, MaybeUninit};
* 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.
#[derive(Copy, Clone, Debug)]
pub struct DefaultAllocator;