From cb7017ce3a684c167a326246258888a13403ba29 Mon Sep 17 00:00:00 2001 From: ebadf Date: Fri, 18 Dec 2015 10:21:13 -0600 Subject: Made dynamic_lib migration path more explicit --- src/libstd/dynamic_lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/libstd') diff --git a/src/libstd/dynamic_lib.rs b/src/libstd/dynamic_lib.rs index 62ec23ccb20..9a4920cf1e9 100644 --- a/src/libstd/dynamic_lib.rs +++ b/src/libstd/dynamic_lib.rs @@ -16,7 +16,7 @@ reason = "API has not been scrutinized and is highly likely to \ either disappear or change", issue = "27810")] -#![rustc_deprecated(since = "1.5.0", reason = "replaced with crates.io crates")] +#![rustc_deprecated(since = "1.5.0", reason = "replaced with crates.io 'libloading'")] #![allow(missing_docs)] #![allow(deprecated)] -- cgit 1.4.1-3-g733a5 From a8df425dd51a9157e08ba1f78c2bb76cf09b8e4e Mon Sep 17 00:00:00 2001 From: ebadf Date: Sun, 20 Dec 2015 14:37:53 -0600 Subject: Corrected deprecation reference to appropriate crate --- src/libstd/dynamic_lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/libstd') diff --git a/src/libstd/dynamic_lib.rs b/src/libstd/dynamic_lib.rs index 9a4920cf1e9..4d805e17a76 100644 --- a/src/libstd/dynamic_lib.rs +++ b/src/libstd/dynamic_lib.rs @@ -16,7 +16,7 @@ reason = "API has not been scrutinized and is highly likely to \ either disappear or change", issue = "27810")] -#![rustc_deprecated(since = "1.5.0", reason = "replaced with crates.io 'libloading'")] +#![rustc_deprecated(since = "1.5.0", reason = "replaced with 'dylib' on crates.io")] #![allow(missing_docs)] #![allow(deprecated)] -- cgit 1.4.1-3-g733a5 From 97547e28681f38d4425093a6078edc7c118871b8 Mon Sep 17 00:00:00 2001 From: Tshepang Lekhonkhobe Date: Wed, 23 Dec 2015 17:46:59 +0200 Subject: doc: make line visible --- src/libstd/io/stdio.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/libstd') diff --git a/src/libstd/io/stdio.rs b/src/libstd/io/stdio.rs index 985dbdd895f..120e56d8079 100644 --- a/src/libstd/io/stdio.rs +++ b/src/libstd/io/stdio.rs @@ -252,7 +252,7 @@ impl Stdin { /// /// - Pipe some text to it, e.g. `printf foo | path/to/executable` /// - Give it text interactively by running the executable directly, - // in which case it will wait for the Enter key to be pressed before + /// in which case it will wait for the Enter key to be pressed before /// continuing #[stable(feature = "rust1", since = "1.0.0")] pub fn read_line(&self, buf: &mut String) -> io::Result { -- cgit 1.4.1-3-g733a5