about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorjbranchaud <jbranchaud@gmail.com>2014-12-13 10:56:19 -0600
committerjbranchaud <jbranchaud@gmail.com>2014-12-13 10:56:19 -0600
commit1567c94361f3d4c02e7bf2f816b37db2333068a3 (patch)
treeabc7ecd66594e67fe65907a7d7545e3407ab0fa3 /src
parent1eccb54bd61c666a38874e6ddaa1f16fa6e3d0fd (diff)
Fix a typo in ownership guide, aquire to acquire.
Diffstat (limited to 'src')
-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 aebafebf98e..4ec2137d3fc 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.