about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2016-03-07 15:45:11 +0000
committerbors <bors@rust-lang.org>2016-03-07 15:45:11 +0000
commit388ccda455140e51456980efc07d175c19dcf005 (patch)
tree309cc2ba9fcc2d00be8ad972aa8d166527544a56 /src
parent2f34986eb0f14b3ce5e17db577abc632a9176380 (diff)
parentb5172569410fb7d398bbb72c1f44a8ba5912827d (diff)
downloadrust-388ccda455140e51456980efc07d175c19dcf005.tar.gz
rust-388ccda455140e51456980efc07d175c19dcf005.zip
Auto merge of #32081 - cmbrandenburg:spell_fix, r=apasel422
Diffstat (limited to 'src')
-rw-r--r--src/libstd/primitive_docs.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/primitive_docs.rs b/src/libstd/primitive_docs.rs
index 839287d1321..24e35b87bf2 100644
--- a/src/libstd/primitive_docs.rs
+++ b/src/libstd/primitive_docs.rs
@@ -370,7 +370,7 @@ mod prim_slice { }
 /// // story has nineteen bytes
 /// assert_eq!(19, len);
 ///
-/// // We can re-build a str out of ptr and len. This is all unsafe becuase
+/// // We can re-build a str out of ptr and len. This is all unsafe because
 /// // we are responsible for making sure the two components are valid:
 /// let s = unsafe {
 ///     // First, we build a &[u8]...