]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
CODING_STYLE: fix grammar mistake
authorChris Morin <chris.morin2@gmail.com>
Wed, 16 Jan 2019 21:04:30 +0000 (13:04 -0800)
committerLennart Poettering <lennart@poettering.net>
Thu, 17 Jan 2019 11:37:40 +0000 (12:37 +0100)
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.