about summary refs log tree commit diff
path: root/src/doc
diff options
context:
space:
mode:
authorJordan Humphreys <mrsweaters@users.noreply.github.com>2015-05-01 16:54:57 -0700
committerJordan Humphreys <mrsweaters@users.noreply.github.com>2015-05-01 16:54:57 -0700
commitf2a19b39fbb2c7fb7c6f0f52e7f65e6ed8bddec4 (patch)
tree296f51df8b22f2d423254e77b09a97bede9113ce /src/doc
parentf3345cb0a70cdac95e126b611b355ab4d36ca3df (diff)
downloadrust-f2a19b39fbb2c7fb7c6f0f52e7f65e6ed8bddec4.tar.gz
rust-f2a19b39fbb2c7fb7c6f0f52e7f65e6ed8bddec4.zip
Correct typo in introduction
Correct 'danging' to 'dangling'.
Diffstat (limited to 'src/doc')
-rw-r--r--src/doc/trpl/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/trpl/README.md b/src/doc/trpl/README.md
index 280665af787..119bbf7fb2a 100644
--- a/src/doc/trpl/README.md
+++ b/src/doc/trpl/README.md
@@ -190,5 +190,5 @@ fn main() {
 We created an inner scope with an additional set of curly braces. `y` will go out of
 scope before we call `push()`, and so we’re all good.
 
-This concept of ownership isn’t just good for preventing danging pointers, but an
+This concept of ownership isn’t just good for preventing dangling pointers, but an
 entire set of related problems, like iterator invalidation, concurrency, and more.