about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2014-12-13 18:24:45 -0800
committerBrian Anderson <banderson@mozilla.com>2014-12-15 06:45:37 -0800
commit1cb7e9fc638e1addbc3645f202ea89a42662812b (patch)
tree28aadb0b5d2e8982efd923532534f6c65d1583fa
parentf0bf34de9fb5cf44cb94021d702a523e8c149005 (diff)
parent1567c94361f3d4c02e7bf2f816b37db2333068a3 (diff)
rollup merge of #19814: jbranchaud/fix-a-typo-in-ownership-guide
-rw-r--r--src/doc/guide-ownership.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/guide-ownership.md b/src/doc/guide-ownership.md
index 7430f7fbc9f..ddabb1de765 100644
--- a/src/doc/guide-ownership.md
+++ b/src/doc/guide-ownership.md
@@ -208,7 +208,7 @@ the function is over, and `num` goes out of scope, the borrow is over.
 Lending out a reference to a resource that someone else owns can be
 complicated, however. For example, imagine this set of operations:
 
-1. I aquire a handle to some kind of resource.
+1. I acquire a handle to some kind of resource.
 2. I lend you a reference to the resource.
 3. I decide I'm done with the resource, and deallocate it, while you still have
    your reference.