Rollup merge of #51272 - steveklabnik:remove_feature_flag, r=QuietMisdreavus

Remove feature flag from fs::read_to_string example

This is stable, and so no longer needed
This commit is contained in:
Mark Simulacrum 2018-06-01 17:25:17 -06:00 committed by GitHub
commit 29a4cd0629
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -295,8 +295,6 @@ pub fn read<P: AsRef<Path>>(path: P) -> io::Result<Vec<u8>> {
/// # Examples
///
/// ```no_run
/// #![feature(fs_read_write)]
///
/// use std::fs;
/// use std::net::SocketAddr;
///