diff options
author | tcmal <me@aria.rip> | 2024-08-25 17:44:24 +0100 |
---|---|---|
committer | tcmal <me@aria.rip> | 2024-08-25 17:44:24 +0100 |
commit | f84ec1a3e077fa0f2e9cd310b6e32e81f1bc1129 (patch) | |
tree | e6d49bbbacc9e87e97093729a9387fe779083a76 /stockton-skeleton/src/mem.rs | |
parent | 982c053f3946b53e1d763df71e4ffcb81362e8d3 (diff) |
chore(all): docs fixes
Diffstat (limited to 'stockton-skeleton/src/mem.rs')
-rw-r--r-- | stockton-skeleton/src/mem.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stockton-skeleton/src/mem.rs b/stockton-skeleton/src/mem.rs index 7c31712..0c8f6aa 100644 --- a/stockton-skeleton/src/mem.rs +++ b/stockton-skeleton/src/mem.rs @@ -1,7 +1,7 @@ //! Used to represent access different memory 'pools'. //! Ideally, each pool is optimised for a specific use case. //! You can implement your own pools using whatever algorithm you'd like. You just need to implement [`MemoryPool`] and optionally [`Block`], then access it -//! using [`RenderingContext.pool_allocator`] +//! using `RenderingContext.alloc` //! Alternatively, some default memory pools are availble when the feature `rendy_pools` is used (on by default). use crate::{ |