From 26b893b38cb4f7b17ca025b3f573ff28e8db4f6f Mon Sep 17 00:00:00 2001 From: Julian Stirling Date: Sun, 13 Jul 2025 11:09:54 +0000 Subject: [PATCH] Fix example docstring example in CONTRIBUTING.md --- CONTRIBUTING.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e5add077..b171d161 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -77,8 +77,7 @@ For function arguments, return values, and exceptions we use the following style ```python def a_function(arg1: str, arg2: int) -> tuple[float, int]: - """ - A one sentence summary, in imperative mood, ending with punctuation. + """A one sentence summary, in imperative mood, ending with punctuation. More detail after a blank line. This could be a whole paragraph.