diff options
author | HampusM <hampus@hampusmat.com> | 2025-03-30 16:44:37 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2025-03-30 16:44:37 +0200 |
commit | c689f877cc81df265fb40336da99c0bef6bb2b39 (patch) | |
tree | be8c9e5b9e6406215bd9b1c57788698ad0a8fea1 /src/lib.rs | |
parent | 5c09a140afbf1d6655323301fd89e653d924f881 (diff) |
docs: correct MultiVec doc comment
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -75,9 +75,9 @@ impl Drop for OwnedAnyPtr } } -/// A list of `ItemT`. This data structure stores a list for every field of `ItemT`, -/// reducing memory usage if `ItemT` contains padding and improves memory cache usage if -/// only certain fields are needed when iterating. +/// A list of runtime defined items. This data structure stores fields contiguously, +/// improving cache efficiency when iterating through items and only specific fields are +/// wanted. /// /// Inspired by Zig's `MultiArrayList`. /// |