removing whitespace

This commit is contained in:
FakeKane 2015-01-05 16:46:46 -05:00
parent 8733b8b19c
commit f7f5d0958b
1 changed files with 3 additions and 3 deletions

View File

@ -28,13 +28,13 @@
//! * `Default`
//!
//! # Examples
//!
//!
//! Accessing elements of a tuple at specified indices:
//!
//!
//! ```
//! let x = ("colorless", "green", "ideas", "sleep", "furiously");
//! assert_eq!(x.3, "sleep");
//!
//!
//! let v = (3i, 3i);
//! let u = (1i, -5i);
//! assert_eq!(v.0 * u.0 + v.1 * u.1, -12i);