From 8e66f3c364354959abaea2517bf5c18d2fee92ab Mon Sep 17 00:00:00 2001 From: Moritz Poldrack Date: Thu, 6 Apr 2023 23:39:26 +0200 Subject: chore: fix typos in contributing guidelines As many do not know, step-by-step is actually an adjective in its own right. Debugging is also written with three g and not with two. Link: https://www.merriam-webster.com/thesaurus/step-by-step Link: https://www.merriam-webster.com/thesaurus/debugging Signed-off-by: Moritz Poldrack Acked-by: Bence Ferdinandy --- CONTRIBUTING.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'CONTRIBUTING.md') diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 8bd543fd..55352e59 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -23,7 +23,7 @@ that you did not break anything. *Unreleased* section of the [CHANGELOG.md](https://git.sr.ht/~rjarry/aerc/tree/master/item/CHANGELOG.md) file. -- run the linter using `make lint` if notmuch is not available on your system +- Run the linter using `make lint`. If notmuch is not available on your system you may have to edit `.golangci.toml` and disable the notmuch tag. [Otherwise you could get hard to trace false positives](https://github.com/golangci/golangci-lint/issues/3061) @@ -71,7 +71,7 @@ defaults: git config sendemail.validate true ln -sf ../../contrib/sendemail-validate-series .git/hooks/sendemail-validate -And send the patch to the mailing list ([step by step +And send the patch to the mailing list ([step-by-step instructions][git-send-email-tutorial]): $ git send-email --annotate -1 @@ -256,7 +256,7 @@ Messages can be sent to the log file by using the following functions: - `log.Warnf()`: Use to report issues that do not affect normal use. - `log.Infof()`: Use to display important messages that may concern non-developers. -- `log.Debugf()`: Use to display non-important messages, or debuging +- `log.Debugf()`: Use to display non-important messages, or debugging details. - `log.Tracef()`: Use to display only low level debugging traces. -- cgit