From 1e268f423c66b818da70fbb30c3fb7657cd93080 Mon Sep 17 00:00:00 2001 From: nikolas Date: Fri, 23 Nov 2018 13:01:50 -0500 Subject: [PATCH] Fix typo in hacking guide: "no possible" -> "not possible" (#10905) --- docs/HACKING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/HACKING.md b/docs/HACKING.md index 4a7d568087..17136060ce 100644 --- a/docs/HACKING.md +++ b/docs/HACKING.md @@ -13,7 +13,7 @@ policy is to keep tests in matching files underneath `src/test/`, e.g. `src/test/test-path-util.c` contains tests for any functions in `src/basic/path-util.c`. If adding a new source file, consider adding a matching test executable. For features at a higher level, tests in `src/test/` are very -strongly recommended. If that is no possible, integration tests in `test/` are +strongly recommended. If that is not possible, integration tests in `test/` are encouraged. Please also have a look at our list of [code quality tools](CODE_QUALITY.md) we have setup for systemd,