Review request changes

This commit is contained in:
Micah Tigley 2017-03-27 16:14:13 -06:00
parent f628117529
commit da74e865b5

View file

@ -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:
//!
//! ```