Skip to content

Commit

Permalink
Rename std::path to std::old_path
Browse files Browse the repository at this point in the history
As part of [RFC 474](rust-lang/rfcs#474), this
commit renames `std::path` to `std::old_path`, leaving the existing path
API in place to ease migration to the new one. Updating should be as
simple as adjusting imports, and the prelude still maps to the old path
APIs for now.

[breaking-change]
  • Loading branch information
aturon committed Feb 3, 2015
1 parent 8bb7e5a commit 9a5cfce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion maybe_owned_vec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ use std::cmp::Ordering;
use std::default::Default;
use std::fmt;
use std::iter::FromIterator;
use std::path::BytesContainer;
use std::old_path::BytesContainer;
use std::slice;

// Note 1: It is not clear whether the flexibility of providing both
Expand Down

0 comments on commit 9a5cfce

Please sign in to comment.