about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
authorClark Gaebel <cgaebel@mozilla.com>2014-08-28 14:57:16 -0700
committerClark Gaebel <cgaebel@mozilla.com>2014-08-28 14:57:16 -0700
commit080449de0c3f5ad56189439e50ece02115c1778a (patch)
tree72625120ce9ca1fa8a569b38cf969d76934749e8 /src/liballoc
parentba39b50943aa55790f79ccdebc446b0f7e6d0d3f (diff)
downloadrust-080449de0c3f5ad56189439e50ece02115c1778a.tar.gz
rust-080449de0c3f5ad56189439e50ece02115c1778a.zip
Fixed misleading docs in liballoc
Diffstat (limited to 'src/liballoc')
-rw-r--r--src/liballoc/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liballoc/lib.rs b/src/liballoc/lib.rs
index cacb9e28989..503c484e469 100644
--- a/src/liballoc/lib.rs
+++ b/src/liballoc/lib.rs
@@ -12,7 +12,7 @@
 //!
 //! This is the lowest level library through which allocation in Rust can be
 //! performed where the allocation is assumed to succeed. This library will
-//! trigger a task failure when allocation fails.
+//! abort the process when allocation fails.
 //!
 //! This library, like libcore, is not intended for general usage, but rather as
 //! a building block of other libraries. The types and interfaces in this