From adb363a480e87233cfc2488325ac39fddafc1a5b Mon Sep 17 00:00:00 2001 From: Tomas Janousek Date: Mon, 13 Jun 2022 11:03:25 +0200 Subject: [PATCH] CONTRIBUTING: Add missing periods Related: https://github.com/xmonad/xmonad/issues/341 --- CONTRIBUTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 4f7be51..19842ca 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -86,7 +86,7 @@ as well! and provide a type signature; use Haddock syntax in the comments. * Follow the coding style of the module that you are making changes to - (`n` spaces for indentation, where to break long type signatures, …) + (`n` spaces for indentation, where to break long type signatures, …). * New code should not introduce any new warnings. If you want to check this yourself before submitting a pull request, there is the @@ -98,7 +98,7 @@ as well! enforced in our GitHub CI. * Partial functions are to be avoided: the window manager should not - crash, so do not call `error` or `undefined` + crash, so do not call `error` or `undefined`. * Any pure function added to the core should have QuickCheck properties precisely defining its behavior.