CODING_STYLE: fix grammar mistake

This commit is contained in:
Chris Morin 2019-01-16 13:04:30 -08:00 committed by Lennart Poettering
parent 119f0f2876
commit f36712b7c3
1 changed files with 2 additions and 2 deletions

View 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.