Skip to content

Commit

Permalink
changed wording a little bit on memory-usage feature's description
Browse files Browse the repository at this point in the history
  • Loading branch information
meadowsys committed Aug 19, 2024
1 parent 90118e6 commit 505678c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ reminder: **Unstable features are NOT covered by semver!**
- **`iter`** - Iterator utilities
- **`lsl`** - Experimental lib to help with writing Second Life scripts in Rust... because yes, I got fed up with it very quickly and immediately missed Rust lol
- **`mcu`** - [Material colour utilities](https://github.com/material-foundation/material-color-utilities)
- **`memory-usage`** - Calculate actual memory usage of Rust structs, including derive macro for custom types (not the same as `size_of::<T>()`)
- **`memory-usage`** - Calculate actual memory usage of values, including derive macro (not the same as `size_of::<T>()`)
- **`minesweeper`** - Core logic components for minesweeper games of arbitrary size
- **`num-traits`** - More traits for numbers and their various functionality, including things like [`MulWidening`]
- **`path`** - UTF-8 only path manipulation utilities written from scratch
Expand Down
2 changes: 1 addition & 1 deletion scripts/src/bin/gen-features.rs
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ fn main() {

#[unstable]
"memory-usage"
"Calculate actual memory usage of Rust structs, including derive macro for custom types (not the same as `size_of::<T>()`)"
"Calculate actual memory usage of values, including derive macro (not the same as `size_of::<T>()`)"
dependencies: ["macro"]

#[unstable]
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ pub mod mcu;

#[cfg(feature = "memory-usage-unstable")]
#[cfg_attr(docsrs, doc(cfg(feature = "memory-usage-unstable")))]
/// Calculate actual memory usage of Rust structs, including derive macro for custom types (not the same as `size_of::<T>()`)
/// Calculate actual memory usage of values, including derive macro (not the same as `size_of::<T>()`)
#[doc = ""]
#[doc = include_str!("./memory_usage/README.md")]
pub mod memory_usage;
Expand Down

0 comments on commit 505678c

Please sign in to comment.