diff options
| author | chromatic <chromatic@wgz.org> | 2014-02-06 16:00:49 -0800 |
|---|---|---|
| committer | chromatic <chromatic@wgz.org> | 2014-02-07 09:59:19 -0800 |
| commit | b91b6a746b8c9ba0b50a01e5e27f7e3baa87b069 (patch) | |
| tree | 700a109c6e1560a3c09867e07fa6a17703169bb8 /src/libstd/cell.rs | |
| parent | 813886b22ccd0976db03c1bfcbb9738b5b7c41db (diff) | |
| download | rust-b91b6a746b8c9ba0b50a01e5e27f7e3baa87b069.tar.gz rust-b91b6a746b8c9ba0b50a01e5e27f7e3baa87b069.zip | |
Cleaned up imports per coding standards.
No functional changes; just style.
Diffstat (limited to 'src/libstd/cell.rs')
| -rw-r--r-- | src/libstd/cell.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/cell.rs b/src/libstd/cell.rs index 6fab74cbc2f..0a3c87f4058 100644 --- a/src/libstd/cell.rs +++ b/src/libstd/cell.rs @@ -10,10 +10,10 @@ //! Types dealing with dynamic mutability -use clone::{Clone,DeepClone}; +use clone::{Clone, DeepClone}; use cmp::Eq; use ops::Drop; -use option::{None,Option,Some}; +use option::{None, Option, Some}; use cast; use kinds::{marker, Pod}; |
