diff options
| author | Scott Olson <scott@solson.me> | 2015-10-13 01:23:42 -0600 |
|---|---|---|
| committer | Scott Olson <scott@solson.me> | 2015-10-13 01:23:42 -0600 |
| commit | 0d3d6e40fdb604054ae7a4533e7fa524c3f3fcce (patch) | |
| tree | b4627a6a8b00ba0fa9b72c2da4d9693840476d43 /src | |
| parent | ec4362da562a4b591a7d120c6677e14ea713481a (diff) | |
| download | rust-0d3d6e40fdb604054ae7a4533e7fa524c3f3fcce.tar.gz rust-0d3d6e40fdb604054ae7a4533e7fa524c3f3fcce.zip | |
Fix typo in custom allocator docs.
Diffstat (limited to 'src')
| -rw-r--r-- | src/doc/trpl/custom-allocators.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/trpl/custom-allocators.md b/src/doc/trpl/custom-allocators.md index 4fd05e87a7e..c38d0dde511 100644 --- a/src/doc/trpl/custom-allocators.md +++ b/src/doc/trpl/custom-allocators.md @@ -160,7 +160,7 @@ compiler errors: * Any one artifact may only be linked to at most one allocator. Binaries, dylibs, and staticlibs must link to exactly one allocator, and if none have - been explicitly chosen the compiler will choose one. On the other than rlibs + been explicitly chosen the compiler will choose one. On the other hand rlibs do not need to link to an allocator (but still can). * A consumer of an allocator is tagged with `#![needs_allocator]` (e.g. the |
