From 080449de0c3f5ad56189439e50ece02115c1778a Mon Sep 17 00:00:00 2001
From: Clark Gaebel <cgaebel@mozilla.com>
Date: Thu, 28 Aug 2014 14:57:16 -0700
Subject: [PATCH] Fixed misleading docs in liballoc

---
 src/liballoc/lib.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/liballoc/lib.rs b/src/liballoc/lib.rs
index cacb9e28989ed..503c484e469d7 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