diff options
author | Sven-Hendrik Haase <svenstaro@gmail.com> | 2020-09-24 03:38:19 +0000 |
---|---|---|
committer | Sven-Hendrik Haase <svenstaro@gmail.com> | 2020-09-24 03:38:19 +0000 |
commit | 7554f2f52f6a6283e0190e98722de66659d27078 (patch) | |
tree | bf45caf1cf153010c0352142b97509e6c3235b69 /src | |
parent | Sorry cargo fmt (diff) | |
download | miniserve-7554f2f52f6a6283e0190e98722de66659d27078.tar.gz miniserve-7554f2f52f6a6283e0190e98722de66659d27078.zip |
Ignore non-Rust preformatted code
Diffstat (limited to 'src')
-rw-r--r-- | src/archive.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/archive.rs b/src/archive.rs index a3e043d..ab43ffb 100644 --- a/src/archive.rs +++ b/src/archive.rs @@ -107,7 +107,7 @@ where /// /// For example, consider this directory structure: /// -/// ``` +/// ```ignore /// a /// └── b /// └── c @@ -118,7 +118,7 @@ where /// /// Making a tarball out of `"a/b/c"` will result in this archive content: /// -/// ``` +/// ```ignore /// c /// ├── e /// ├── f @@ -185,7 +185,7 @@ where /// /// For example, consider this directory structure: /// -/// ``` +/// ```ignore /// a /// └── b /// └── c @@ -196,7 +196,7 @@ where /// /// Making a zip out of `"a/b/c"` will result in this archive content: /// -/// ``` +/// ```ignore /// c /// ├── e /// ├── f |