Skip to content

Commit

Permalink
Review request changes
Browse files Browse the repository at this point in the history
  • Loading branch information
tigleym committed Mar 27, 2017
1 parent f628117 commit da74e86
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/libcollections/str.rs
Expand Up @@ -11,10 +11,10 @@
//! Unicode string slices.
//!
//! The `&str` type is one of the two main string types, the other being `String`.
//! Unlike its `String` counterpart, its contents are borrowed and therefore
//! cannot be moved someplace else.
//! Unlike its `String` counterpart, its contents are borrowed.
//!
//! # Basic Usage
//!
//! A basic string declaration of `&str` type:
//!
//! ```
Expand All @@ -27,7 +27,7 @@
//! We can explicitly specify `hello_world`'s lifetime as well:
//!
//! ```
//! let hello_world:&'static str = "Hello, world!";
//! let hello_world: &'static str = "Hello, world!";
//! ```
//!
//! *[See also the `str` primitive type](../../std/primitive.str.html).*
Expand Down

0 comments on commit da74e86

Please sign in to comment.