Markdown fixes

This commit is contained in:
Marcus Holland-Moritz 2023-07-09 15:38:28 +02:00
parent 9aa02f4277
commit 1d96ef6d8f
2 changed files with 5 additions and 1 deletions

View File

@ -170,7 +170,9 @@ This should be relatively straightforward if you're already familiar
with adding other FUSE file systems to `/etc/fstab`. An entry looks
like this:
dwarfs#/path/to/image.dwarfs /mnt/mountpoint fuse noauto,defaults,user,cachesize=1g 0 0
```
dwarfs#/path/to/image.dwarfs /mnt/mountpoint fuse noauto,defaults,user,cachesize=1g 0 0
```
The first bit before the `#` tells `mount` to look for `mount.dwarfs`,
which is installed as a symbolic link to the DwarFS FUSE driver. The

View File

@ -565,12 +565,14 @@ separators.
Patterns also support character classes.
Here's an example rule set:
```
+ File/Spec/[EM]*.pm
- unicore/**.pl
+ *.pl
- *
```
This set of rules will include all files matching `File/Spec/[EM]*.pm`
anywhere in the hierarchy. It will also include all `*.pl` files, except
for those anywhere below a `unicore` directory. The last rule excludes