]> git.proxmox.com Git - rustc.git/blobdiff - src/doc/unstable-book/src/library-features/allocator-api.md
New upstream version 1.43.0+dfsg1
[rustc.git] / src / doc / unstable-book / src / library-features / allocator-api.md
index e3969ace7e99653203988cdaa2d24cad6bc1a54c..9f045ce08a4337dfe790fc5e432c881a5c6316a3 100644 (file)
@@ -9,7 +9,7 @@ The tracking issue for this feature is [#32838]
 Sometimes you want the memory for one collection to use a different
 allocator than the memory for another collection. In this case,
 replacing the global allocator is not a workable option. Instead,
-you need to pass in an instance of an `Alloc` to each collection
+you need to pass in an instance of an `AllocRef` to each collection
 for which you want a custom allocator.
 
 TBD