From 9009d439c9b39cadab775e5ee581ad0b35b522ab Mon Sep 17 00:00:00 2001 From: rilysh Date: Thu, 28 Dec 2023 02:34:32 -0500 Subject: [PATCH] CONTRIBUTING.md: fix typo from commmit to commit At line 44, commit is spelled "commmit" (one extra "m"). It should be spelled "commit". Link: https://www.dictionary.com/browse/commit Signed-off-by: rilysh --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index f166b6a93766dd..c3028b7a764f7d 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -41,7 +41,7 @@ A pull request will be considered if: * The commits follow FreeBSD's style guide. See [Style](#Style). * Run tools/build/checkstyle9.pl on your Git branch and eliminate all errors. * The commits do not introduce trailing white space. -* If the commmit fixes a bug, please add 'PR: \' to the commit message. +* If the commit fixes a bug, please add 'PR: \' to the commit message. * If there's a code review in Phabricator, please include a link as a 'Differential Revision: ' line. * If you have run FreeBSD's sources through a static analysis tool, please don't submit the raw results. Please also see the chunking up guidelines. Also, please make sure that kyua tests are the same before / after your change. Ideally, you'd also create a test case that shows an actual bug that's being fixed by these changes.