aboutsummaryrefslogtreecommitdiff
path: root/system/lib/libcxxabi/src/cxa_vector.cpp
diff options
context:
space:
mode:
authorBruce Mitchener <bruce.mitchener@gmail.com>2013-02-17 14:37:52 +0700
committerBruce Mitchener <bruce.mitchener@gmail.com>2013-03-25 00:34:11 +0700
commit9e185cfabd1e207339aae1fa5ad6247000e4c613 (patch)
tree92a0b44834b08325cd208e70faa4c91887fd3f4e /system/lib/libcxxabi/src/cxa_vector.cpp
parent59ff5a6a3c3e1f5255c5cf29f98df633a77b89b3 (diff)
update libcxxabi.
Diffstat (limited to 'system/lib/libcxxabi/src/cxa_vector.cpp')
-rw-r--r--system/lib/libcxxabi/src/cxa_vector.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/lib/libcxxabi/src/cxa_vector.cpp b/system/lib/libcxxabi/src/cxa_vector.cpp
index 926c01dd..c2292ef2 100644
--- a/system/lib/libcxxabi/src/cxa_vector.cpp
+++ b/system/lib/libcxxabi/src/cxa_vector.cpp
@@ -32,7 +32,7 @@ namespace {
// A pair of classes to simplify exception handling and control flow.
// They get passed a block of memory in the constructor, and unless the
// 'release' method is called, they deallocate the memory in the destructor.
-// Prefered usage is to allocate some memory, attach it to one of these objects,
+// Preferred usage is to allocate some memory, attach it to one of these objects,
// and then, when all the operations to set up the memory block have succeeded,
// call 'release'. If any of the setup operations fail, or an exception is
// thrown, then the block is automatically deallocated.