summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorChris Morin <chris.morin2@gmail.com>2019-01-16 13:04:30 -0800
committerLennart Poettering <lennart@poettering.net>2019-01-17 12:37:40 +0100
commitf36712b7c3c3a9975ba8c22888a3138e367fa460 (patch)
tree24b3abf29e5362a7c034b7f5641f363f4e2a041e /docs
parent119f0f2876ea340cc41525e844487aa88551c219 (diff)
downloadsystemd-f36712b7c3c3a9975ba8c22888a3138e367fa460.tar.gz
CODING_STYLE: fix grammar mistake
Diffstat (limited to 'docs')
-rw-r--r--docs/CODING_STYLE.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/CODING_STYLE.md b/docs/CODING_STYLE.md
index 4a1cc59ce6..7bad3f5d2e 100644
--- a/docs/CODING_STYLE.md
+++ b/docs/CODING_STYLE.md
@@ -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.