]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
docs/CODING_STYLE: remove whitespace
authorhulkoba <jacoba@neighbourhood.ie>
Fri, 2 Feb 2024 11:07:29 +0000 (12:07 +0100)
committerhulkoba <jacoba@neighbourhood.ie>
Wed, 27 Mar 2024 05:49:16 +0000 (06:49 +0100)
docs/CODING_STYLE.md

index 6d6e549f5c7bca80468a4a59c1cfdea50fef0485..b4e88c99df257634fa77a38eb6afad4649cf6222 100644 (file)
@@ -297,7 +297,7 @@ SPDX-License-Identifier: LGPL-2.1-or-later
   t.bar = "bazz";
   ```
 
-- To implement an endless loop, use `for (;;)` rather than `while (1)`.  The
+- To implement an endless loop, use `for (;;)` rather than `while (1)`. The
   latter is a bit ugly anyway, since you probably really meant `while
   (true)`. To avoid the discussion what the right always-true expression for an
   infinite while loop is, our recommendation is to simply write it without any