Skip to content

Commit 6f520b8

Browse files
committed
---
yaml --- r: 126022 b: refs/heads/try c: 235bb3f h: refs/heads/master v: v3
1 parent bdd8917 commit 6f520b8

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
refs/heads/master: f2fa55903e378368ed9173560f03a0ef16e371c2
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 9fc8394d3bce22ab483f98842434c84c396212ae
5-
refs/heads/try: b86574bfff69124397e1a1bdf42a47053beb3aff
5+
refs/heads/try: 235bb3fb1f40dcd7da9b4f8996f137589505de8e
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c

branches/try/src/libstd/ascii.rs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,13 @@ use string::String;
2626
use to_string::IntoStr;
2727
use vec::Vec;
2828

29+
#[deprecated="this trait has been renamed to `AsciiExt`"]
30+
pub use StrAsciiExt = self::AsciiExt;
31+
32+
#[deprecated="this trait has been renamed to `OwnedAsciiExt`"]
33+
pub use OwnedStrAsciiExt = self::OwnedAsciiExt;
34+
35+
2936
/// Datatype to hold one ascii character. It wraps a `u8`, with the highest bit always zero.
3037
#[deriving(Clone, PartialEq, PartialOrd, Ord, Eq, Hash)]
3138
pub struct Ascii { chr: u8 }

0 commit comments

Comments
 (0)