Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/walkdir.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoropilarium <opilar@ya.ru>2017-09-22 14:29:09 +0300
committerAndrew Gallant <jamslam@gmail.com>2017-09-30 15:22:58 +0300
commit13fdfb47518976bdd47698feb6c19c53474f3018 (patch)
tree9d624240f0eb0e6f9c16d328c2cf3568247ea653
parentfcbb831799c6692c22807de49839f11bde612b1f (diff)
no_run attribute instead of rust,no_run
rust syntax is by default
-rw-r--r--README.md8
-rw-r--r--src/lib.rs24
2 files changed, 16 insertions, 16 deletions
diff --git a/README.md b/README.md
index 97d6840..1ef3cb0 100644
--- a/README.md
+++ b/README.md
@@ -30,7 +30,7 @@ walkdir = "1"
The following code recursively iterates over the directory given and prints
the path for each entry:
-```rust,no_run
+```no_run
use walkdir::WalkDir;
for entry in WalkDir::new("foo") {
@@ -43,7 +43,7 @@ Or, if you'd like to iterate over all entries and ignore any errors that may
arise, use `filter_map`. (e.g., This code below will silently skip directories
that the owner of the running process does not have permission to access.)
-```rust,no_run
+```no_run
use walkdir::WalkDir;
for entry in WalkDir::new("foo").into_iter().filter_map(|e| e.ok()) {
@@ -55,7 +55,7 @@ for entry in WalkDir::new("foo").into_iter().filter_map(|e| e.ok()) {
The same code as above, except `follow_links` is enabled:
-```rust,no_run
+```no_run
use walkdir::WalkDir;
for entry in WalkDir::new("foo").follow_links(true) {
@@ -69,7 +69,7 @@ for entry in WalkDir::new("foo").follow_links(true) {
This uses the `filter_entry` iterator adapter to avoid yielding hidden files
and directories efficiently:
-```rust,no_run
+```no_run
use walkdir::{DirEntry, WalkDir};
fn is_hidden(entry: &DirEntry) -> bool {
diff --git a/src/lib.rs b/src/lib.rs
index 344b471..53a4309 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -31,7 +31,7 @@ links (not enabled by default).
The following code recursively iterates over the directory given and prints
the path for each entry:
-```rust,no_run
+```no_run
use walkdir::WalkDir;
# use walkdir::Error;
@@ -51,7 +51,7 @@ Or, if you'd like to iterate over all entries and ignore any errors that may
arise, use [`filter_map`]. (e.g., This code below will silently skip directories
that the owner of the running process does not have permission to access.)
-```rust,no_run
+```no_run
use walkdir::WalkDir;
for entry in WalkDir::new("foo").into_iter().filter_map(|e| e.ok()) {
@@ -65,7 +65,7 @@ for entry in WalkDir::new("foo").into_iter().filter_map(|e| e.ok()) {
The same code as above, except [`follow_links`] is enabled:
-```rust,no_run
+```no_run
use walkdir::WalkDir;
# use walkdir::Error;
@@ -88,7 +88,7 @@ for entry in WalkDir::new("foo").follow_links(true) {
This uses the [`filter_entry`] iterator adapter to avoid yielding hidden files
and directories efficiently (i.e. without recursing into hidden directories):
-```rust,no_run
+```no_run
use walkdir::{DirEntry, WalkDir};
# use walkdir::Error;
@@ -187,7 +187,7 @@ pub type Result<T> = ::std::result::Result<T, Error>;
/// options. For example, this only shows entries with a depth of `1`, `2`
/// or `3` (relative to `foo`):
///
-/// ```rust,no_run
+/// ```no_run
/// use walkdir::WalkDir;
/// # use walkdir::Error;
///
@@ -211,7 +211,7 @@ pub type Result<T> = ::std::result::Result<T, Error>;
/// this is the only directory yielded with depth `0`, it is easy to ignore it
/// with the [`min_depth`] setting:
///
-/// ```rust,no_run
+/// ```no_run
/// use walkdir::WalkDir;
/// # use walkdir::Error;
///
@@ -413,7 +413,7 @@ impl WalkDir {
/// With contents_first disabled (the default), the following code visits the
/// directory tree in depth-first order:
///
- /// ```rust,no_run
+ /// ```no_run
/// use walkdir::WalkDir;
///
/// for entry in WalkDir::new("foo") {
@@ -430,7 +430,7 @@ impl WalkDir {
///
/// With contents_first enabled:
///
- /// ```rust,no_run
+ /// ```no_run
/// use walkdir::WalkDir;
///
/// for entry in WalkDir::new("foo").contents_first(true) {
@@ -642,7 +642,7 @@ impl IntoIter {
/// condition manually. For example, to skip hidden entries efficiently on
/// unix systems:
///
- /// ```rust,no_run
+ /// ```no_run
/// use walkdir::{DirEntry, WalkDir};
///
/// fn is_hidden(entry: &DirEntry) -> bool {
@@ -694,7 +694,7 @@ impl IntoIter {
/// example, to skip hidden files and directories efficiently on unix
/// systems:
///
- /// ```rust,no_run
+ /// ```no_run
/// use walkdir::{DirEntry, WalkDir};
/// # use walkdir::Error;
///
@@ -1115,7 +1115,7 @@ impl<P> FilterEntry<IntoIter, P>
/// example, to skip hidden files and directories efficiently on unix
/// systems:
///
- /// ```rust,no_run
+ /// ```no_run
/// use walkdir::{DirEntry, WalkDir};
/// # use walkdir::Error;
///
@@ -1164,7 +1164,7 @@ impl<P> FilterEntry<IntoIter, P>
/// condition manually. For example, to skip hidden entries efficiently on
/// unix systems:
///
- /// ```rust,no_run
+ /// ```no_run
/// use walkdir::{DirEntry, WalkDir};
///
/// fn is_hidden(entry: &DirEntry) -> bool {