Rollup merge of #49599 - rolfvandekrol:feature/no_ru, r=frewsxcv

Fix typo

In `libstd/io/buffered.rs` one example was marked as `no_ru` instead of `no_run`. I assume this is a typo.
This commit is contained in:
kennytm 2018-04-04 11:07:21 +02:00 committed by GitHub
commit e1ebd0a9ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -180,7 +180,7 @@ impl<R: Read> BufReader<R> {
///
/// # Examples
///
/// ```no_ru
/// ```no_run
/// # #![feature(bufreader_buffer)]
/// use std::io::{BufReader, BufRead};
/// use std::fs::File;