From b5172569410fb7d398bbb72c1f44a8ba5912827d Mon Sep 17 00:00:00 2001 From: "Craig M. Brandenburg" Date: Sun, 6 Mar 2016 08:37:30 -0700 Subject: [PATCH] Spelling fix for "because" --- src/libstd/primitive_docs.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]...