diff options
author | John Baber-Lucero <github@frundle.com> | 2021-01-12 05:41:35 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-12 10:41:35 +0000 |
commit | e6df67cf1f6e895c9f72bb3756cfc186d4e78390 (patch) | |
tree | 959a88f2ff14a4d67ee2cc1c024f2af17db67f09 | |
parent | 770bccfcf2ef09ea4a61a8c9222686c60f4e2846 (diff) | |
download | libfuse-e6df67cf1f6e895c9f72bb3756cfc186d4e78390.tar.gz |
Fix a few typos in README.md. (#579)
* Fix a few typos in README.md.
* Change recommendation to mandate for meson and ninja
Co-authored-by: John Baber-Lucero <git@frundle.com>
-rw-r--r-- | README.md | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -35,7 +35,7 @@ releases, but unfortunately has no capacity to do any development beyond addressing high-impact issues. When reporting bugs, please understand that unless you are including a pull request or are reporting a critical issue, you will probably not get a response. If -you are using libfuse, please consider to contribute to the project. +you are using libfuse, please consider contributing to the project. Supported Platforms @@ -50,8 +50,8 @@ Installation ------------ You can download libfuse from -https://github.com/libfuse/libfuse/releases. To build and install, we -recommend to use [Meson](http://mesonbuild.com/) and +https://github.com/libfuse/libfuse/releases. To build and install, you +must use [Meson](http://mesonbuild.com/) and [Ninja](https://ninja-build.org). After extracting the libfuse tarball, create a (temporary) build directory and run Meson: @@ -65,7 +65,7 @@ nevertheless want to adjust them, you can do so with the $ meson configure # list options $ meson configure -D disable-mtab=true # set an option -To build, test and install libfuse, you then use Ninja: +To build, test, and install libfuse, you then use Ninja: $ ninja $ sudo python3 -m pytest test/ |