diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2022-10-20 11:56:55 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2022-10-25 11:53:55 -0400 |
commit | d46c95b758b9fd67a38474d5e8cfbce6d2d12b70 (patch) | |
tree | 1a9716c676b81e56a86d0600dd414959dba216cd /docs | |
parent | ebc3b0def3091e015d328ded88ec0fc53b7eba79 (diff) | |
download | kutter-d46c95b758b9fd67a38474d5e8cfbce6d2d12b70.tar.gz kutter-d46c95b758b9fd67a38474d5e8cfbce6d2d12b70.tar.xz kutter-d46c95b758b9fd67a38474d5e8cfbce6d2d12b70.zip |
docs: Add a note about fixing underlying bugs in CONTRIBUTING.md
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/CONTRIBUTING.md | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/CONTRIBUTING.md b/docs/CONTRIBUTING.md index 0c8b2c91..793fc7d5 100644 --- a/docs/CONTRIBUTING.md +++ b/docs/CONTRIBUTING.md @@ -62,6 +62,10 @@ Common things a reviewer will look for: Submissions must pass all [regression test cases](Debugging.md). + When fixing a defect in the code, submitters should have a general + understanding of the root cause of that defect, and the fix should + target that root cause. + Code submissions should not contain excessive debugging code, debugging options, nor run-time debug logging. |