about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorScott Olson <scott@solson.me>2015-10-13 01:23:42 -0600
committerScott Olson <scott@solson.me>2015-10-13 01:23:42 -0600
commit0d3d6e40fdb604054ae7a4533e7fa524c3f3fcce (patch)
treeb4627a6a8b00ba0fa9b72c2da4d9693840476d43 /src
parentec4362da562a4b591a7d120c6677e14ea713481a (diff)
downloadrust-0d3d6e40fdb604054ae7a4533e7fa524c3f3fcce.tar.gz
rust-0d3d6e40fdb604054ae7a4533e7fa524c3f3fcce.zip
Fix typo in custom allocator docs.
Diffstat (limited to 'src')
-rw-r--r--src/doc/trpl/custom-allocators.md2
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