]> git.ipfire.org Git - thirdparty/systemd.git/blobdiff - docs/CODING_STYLE.md
tty-ask-password: copy argv[] before forking child
[thirdparty/systemd.git] / docs / CODING_STYLE.md
index 4a1cc59ce61a54fb3c915639a9df32eb69147f3a..7bad3f5d2ecd5b7a66a8a069d19348f4263535b8 100644 (file)
@@ -130,8 +130,8 @@ title: Coding Style
   }
   ```
 
-- Unless you allocate an array, `double` is always the better choice
-  than `float`. Processors speak `double` natively anyway, so this is
+- Unless you allocate an array, `double` is always a better choice
+  than `float`. Processors speak `double` natively anyway, so there is
   no speed benefit, and on calls like `printf()` `float`s get promoted
   to `double`s anyway, so there is no point.