diff options
| author | Tim Chevalier <chevalier@alum.wellesley.edu> | 2012-10-25 14:44:26 -0700 |
|---|---|---|
| committer | Tim Chevalier <chevalier@alum.wellesley.edu> | 2012-10-25 14:48:28 -0700 |
| commit | af842bf76c801a6dae34c9f7dc7c27fd607574e9 (patch) | |
| tree | 3fa2a295a7c938baf057acedd5ca72c757b847b2 | |
| parent | 93a0763d53f7b6f036e5624f89eaac28ea452fe8 (diff) | |
| download | rust-af842bf76c801a6dae34c9f7dc7c27fd607574e9.tar.gz rust-af842bf76c801a6dae34c9f7dc7c27fd607574e9.zip | |
Rename core::uniq to core::owned
No review. Closes #3841
| -rw-r--r-- | src/libcore/core.rc | 2 | ||||
| -rw-r--r-- | src/libcore/owned.rs (renamed from src/libcore/uniq.rs) | 0 |
2 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/core.rc b/src/libcore/core.rc index c0852e66320..707d6125046 100644 --- a/src/libcore/core.rc +++ b/src/libcore/core.rc @@ -133,7 +133,7 @@ pub mod at_vec; pub mod bool; pub mod tuple; pub mod unit; -pub mod uniq; +pub mod owned; // Ubiquitous-utility-type modules diff --git a/src/libcore/uniq.rs b/src/libcore/owned.rs index 1d5dd8eca87..1d5dd8eca87 100644 --- a/src/libcore/uniq.rs +++ b/src/libcore/owned.rs |
