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.