Remove feature flag from fs::read_to_string example

This is stable, and so no longer needed
This commit is contained in:
steveklabnik 2018-06-01 08:24:36 -04:00
parent 889d8dcaa7
commit 48bd07e3a9

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;
///