Skip to content

Commit 9e73f47

Browse files
committed
---
yaml --- r: 273063 b: refs/heads/beta c: aed7dda h: refs/heads/master i: 273061: ee503bf 273059: 65f0df5 273055: ad27e4c
1 parent 4b81dfa commit 9e73f47

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ refs/tags/0.9: 36870b185fc5f5486636d4515f0e22677493f225
2323
refs/tags/0.10: ac33f2b15782272ae348dbd7b14b8257b2148b5a
2424
refs/tags/0.11.0: e1247cb1d0d681be034adb4b558b5a0c0d5720f9
2525
refs/tags/0.12.0: f0c419429ef30723ceaf6b42f9b5a2aeb5d2e2d1
26-
refs/heads/beta: a38bf6e23d13bd479cf89b338f0862395d22fd07
26+
refs/heads/beta: aed7ddae8ea7f549dc2d493fda49dfa49de429b7
2727
refs/tags/1.0.0-alpha: e42bd6d93a1d3433c486200587f8f9e12590a4d7
2828
refs/heads/tmp: e06d2ad9fcd5027bcaac5b08fc9aa39a49d0ecd3
2929
refs/tags/1.0.0-alpha.2: 4c705f6bc559886632d3871b04f58aab093bfa2f

branches/beta/src/libcore/char.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ pub fn from_digit(num: u32, radix: u32) -> Option<char> {
255255
#[doc(hidden)]
256256
#[unstable(feature = "core_char_ext",
257257
reason = "the stable interface is `impl char` in later crate",
258-
issue = "27701")]
258+
issue = "32110")]
259259
pub trait CharExt {
260260
#[stable(feature = "core", since = "1.6.0")]
261261
fn is_digit(self, radix: u32) -> bool;

branches/beta/src/libcore/num/f32.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ pub mod consts {
141141

142142
#[unstable(feature = "core_float",
143143
reason = "stable interface is via `impl f{32,64}` in later crates",
144-
issue = "27702")]
144+
issue = "32110")]
145145
impl Float for f32 {
146146
#[inline]
147147
fn nan() -> f32 { NAN }

branches/beta/src/libcore/num/f64.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ pub mod consts {
141141

142142
#[unstable(feature = "core_float",
143143
reason = "stable interface is via `impl f{32,64}` in later crates",
144-
issue = "27702")]
144+
issue = "32110")]
145145
impl Float for f64 {
146146
#[inline]
147147
fn nan() -> f64 { NAN }

branches/beta/src/libcore/num/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2209,7 +2209,7 @@ pub enum FpCategory {
22092209
#[doc(hidden)]
22102210
#[unstable(feature = "core_float",
22112211
reason = "stable interface is via `impl f{32,64}` in later crates",
2212-
issue = "27702")]
2212+
issue = "32110")]
22132213
pub trait Float: Sized {
22142214
/// Returns the NaN value.
22152215
#[unstable(feature = "float_extras", reason = "needs removal",

branches/beta/src/libcore/slice.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ use raw::Slice as RawSlice;
6161
/// Extension methods for slices.
6262
#[unstable(feature = "core_slice_ext",
6363
reason = "stable interface provided by `impl [T]` in later crates",
64-
issue = "27701")]
64+
issue = "32110")]
6565
#[allow(missing_docs)] // documented elsewhere
6666
pub trait SliceExt {
6767
type Item;
@@ -182,7 +182,7 @@ macro_rules! slice_ref {
182182

183183
#[unstable(feature = "core_slice_ext",
184184
reason = "stable interface provided by `impl [T]` in later crates",
185-
issue = "27701")]
185+
issue = "32110")]
186186
impl<T> SliceExt for [T] {
187187
type Item = T;
188188

branches/beta/src/libcore/str/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1561,7 +1561,7 @@ mod traits {
15611561
#[doc(hidden)]
15621562
#[unstable(feature = "core_str_ext",
15631563
reason = "stable interface provided by `impl str` in later crates",
1564-
issue = "27701")]
1564+
issue = "32110")]
15651565
pub trait StrExt {
15661566
// NB there are no docs here are they're all located on the StrExt trait in
15671567
// libcollections, not here.

0 commit comments

Comments
 (0)