diff options
| author | Zack Weinberg <zackw@panix.com> | 2017-04-20 17:37:12 -0400 |
|---|---|---|
| committer | Zack Weinberg <zackw@panix.com> | 2017-05-10 09:52:16 -0400 |
| commit | 4ab3bcb9ca137ad6e6ee4ae4a70a234d92b6d4ab (patch) | |
| tree | 486f01a1d12b1a0efdb98fa7f1ccd72a5336fb47 /src/doc | |
| parent | 07766f675caaabc1d64ef59db6ddfa43e72e6d4f (diff) | |
| download | rust-4ab3bcb9ca137ad6e6ee4ae4a70a234d92b6d4ab.tar.gz rust-4ab3bcb9ca137ad6e6ee4ae4a70a234d92b6d4ab.zip | |
Fix up stability annotations per feedback.
Diffstat (limited to 'src/doc')
| -rw-r--r-- | src/doc/unstable-book/src/SUMMARY.md | 4 | ||||
| -rw-r--r-- | src/doc/unstable-book/src/library-features/eprint.md | 13 | ||||
| -rw-r--r-- | src/doc/unstable-book/src/library-features/print-internals.md (renamed from src/doc/unstable-book/src/library-features/eprint-internal.md) | 2 | ||||
| -rw-r--r-- | src/doc/unstable-book/src/library-features/print.md | 5 |
4 files changed, 2 insertions, 22 deletions
diff --git a/src/doc/unstable-book/src/SUMMARY.md b/src/doc/unstable-book/src/SUMMARY.md index 9229f445297..8f26e4d36cd 100644 --- a/src/doc/unstable-book/src/SUMMARY.md +++ b/src/doc/unstable-book/src/SUMMARY.md @@ -130,8 +130,6 @@ - [derive_eq](library-features/derive-eq.md) - [discriminant_value](library-features/discriminant-value.md) - [error_type_id](library-features/error-type-id.md) - - [eprint](library-features/eprint.md) - - [eprint_internal](library-features/eprint-internal.md) - [exact_size_is_empty](library-features/exact-size-is-empty.md) - [fd](library-features/fd.md) - [fd_read](library-features/fd-read.md) @@ -180,7 +178,7 @@ - [peek](library-features/peek.md) - [placement_in](library-features/placement-in.md) - [placement_new_protocol](library-features/placement-new-protocol.md) - - [print](library-features/print.md) + - [print_internals](library-features/print-internals.md) - [proc_macro_internals](library-features/proc-macro-internals.md) - [process_try_wait](library-features/process-try-wait.md) - [question_mark_carrier](library-features/question-mark-carrier.md) diff --git a/src/doc/unstable-book/src/library-features/eprint.md b/src/doc/unstable-book/src/library-features/eprint.md deleted file mode 100644 index 69f781b2241..00000000000 --- a/src/doc/unstable-book/src/library-features/eprint.md +++ /dev/null @@ -1,13 +0,0 @@ -# `eprint` - -The tracking issue for this feature is: [#40528] - -[#40528]: https://github.com/rust-lang/rust/issues/40528 - ------------------------- - -This feature enables the `eprint!` and `eprintln!` global macros, -which are just like `print!` and `println!`, respectively, except that -they send output to the standard _error_ stream, rather than standard -output. (`panic!` messages have always been written to standard error.) - diff --git a/src/doc/unstable-book/src/library-features/eprint-internal.md b/src/doc/unstable-book/src/library-features/print-internals.md index d3230d8bfa8..a68557872af 100644 --- a/src/doc/unstable-book/src/library-features/eprint-internal.md +++ b/src/doc/unstable-book/src/library-features/print-internals.md @@ -1,4 +1,4 @@ -# `eprint_internal` +# `print_internals` This feature is internal to the Rust compiler and is not intended for general use. diff --git a/src/doc/unstable-book/src/library-features/print.md b/src/doc/unstable-book/src/library-features/print.md deleted file mode 100644 index dc25cb237e3..00000000000 --- a/src/doc/unstable-book/src/library-features/print.md +++ /dev/null @@ -1,5 +0,0 @@ -# `print` - -This feature is internal to the Rust compiler and is not intended for general use. - ------------------------- |
