about summary refs log tree commit diff
diff options
context:
space:
mode:
authorDaniel Hofstetter <daniel.hofstetter@42dh.com>2014-10-27 15:41:24 +0100
committerDaniel Hofstetter <daniel.hofstetter@42dh.com>2014-10-27 15:41:24 +0100
commit25650e0eeb92e1e495b7c628319e65cf09cd1d6f (patch)
treeb5a85aced5a32eb4123eff00f2084937966461ee
parenta0efafbd85e2e0965746adba7e899ce904d324dc (diff)
downloadrust-25650e0eeb92e1e495b7c628319e65cf09cd1d6f.tar.gz
rust-25650e0eeb92e1e495b7c628319e65cf09cd1d6f.zip
Guide: Add missing "a"
-rw-r--r--src/doc/guide-pointers.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/guide-pointers.md b/src/doc/guide-pointers.md
index dd9c6871722..87eb91d3ec7 100644
--- a/src/doc/guide-pointers.md
+++ b/src/doc/guide-pointers.md
@@ -416,7 +416,7 @@ great detail, so if you want the full details, check that out.
 
 In general, prefer stack allocation over heap allocation. Using references to
 stack allocated information is preferred whenever possible. Therefore,
-references are the default pointer type you should use, unless you have
+references are the default pointer type you should use, unless you have a
 specific reason to use a different type. The other types of pointers cover when
 they're appropriate to use in their own best practices sections.