Typo fixes
Link to CONTRIBUTING.md on README
Add bootstrap/ to .gitignore
---
.gitignore | 2 +-
CONTRIBUTING.md | 2 +-
README.md | 4 ++++
src/tests.c | 2 +-
4 files changed, 7 insertions(+), 3 deletions(-)
diff --git a/.gitignore b/.gitignore
index 22b284c..fd937c3 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,4 @@
build/
subprojects/*
!subprojects/*.wrap
-
+bootstrap/
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 1d2c9a2..24aabc4 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -37,7 +37,7 @@ All errors that can be checked, should be checked. If an error is detected, an
error message should be printed using `interp_error`, or if there is no source
code associated with the error, `LOG_W`. The error should be immediately
returned. Most functions returning a `bool` return `false` on error. The most
-common type other type of error returning function has the return type
+common other type of error returning function has the return type
`enum iteration_result`. These functions should return `ir_err` on error.
## Meson functions
diff --git a/README.md b/README.md
index 3d36114..25d5614 100644
--- a/README.md
+++ b/README.md
@@ -49,6 +49,10 @@ bootstrap/muon setup build
ninja -C build
```
+## Contributing
+
+Please refer to the contributing [guide](https://git.sr.ht/~lattis/muon/tree/master/item/CONTRIBUTING.md) before sending patches.
+
## Credits
Although I had already had the idea to re-implement meson in C, I was initially
diff --git a/src/tests.c b/src/tests.c
index 76ba0b7..18261bc 100644
--- a/src/tests.c
+++ b/src/tests.c
@@ -100,7 +100,7 @@ tests_run(const char *build_root)
log_plain("%s", cmd_ctx.err);
ret = false;
} else {
- LOG_I(log_misc, "%s - succes", test_parser.name);
+ LOG_I(log_misc, "%s - success", test_parser.name);
}
}
--
2.32.0