]> git.ipfire.org Git - thirdparty/systemd.git/blobdiff - docs/CODING_STYLE.md
curl-glue: catch libcurl attempting to change timeout handler when we destroy a curl...
[thirdparty/systemd.git] / docs / CODING_STYLE.md
index 7a1977d80450973e617f4bf58914b66a35447384..8f687e66623ef4e6addc52683a6e2d324272282c 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