From 8a1e060b137d0121f1be89ea7a79b0389f7ab123 Mon Sep 17 00:00:00 2001 From: Sven Michael Klose Date: Mon, 22 Jul 2024 23:51:16 +0200 Subject: [PATCH] Fix function comment example. Must be on its own line. --- Contributing.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Contributing.md b/Contributing.md index 2ea50a183..5b53e0467 100644 --- a/Contributing.md +++ b/Contributing.md @@ -156,7 +156,8 @@ supports). The exceptions are: this: ~~~C -int foo(int bar) /* Add 1 to bar, takes bar and returns the result */ +int foo(int bar) +/* Add 1 to bar, takes bar and returns the result */ { return bar + 1; }