From 54831bbb6ee6ce7adfc535ccc2a5802e37703425 Mon Sep 17 00:00:00 2001 From: Kaspar Schleiser Date: Wed, 23 Oct 2019 21:24:16 +0200 Subject: [PATCH] drivers/bh1750fvi: fix typos --- drivers/bh1750fvi/include/bh1750fvi_internal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/bh1750fvi/include/bh1750fvi_internal.h b/drivers/bh1750fvi/include/bh1750fvi_internal.h index 1b4f75cb1e..48c4d1c9d2 100644 --- a/drivers/bh1750fvi/include/bh1750fvi_internal.h +++ b/drivers/bh1750fvi/include/bh1750fvi_internal.h @@ -28,7 +28,7 @@ extern "C" { * @brief Result divisor (1.2 times 65535) * * The 16-bit RAW results have to be divided by 1.2. We do this by using fixed - * floating point arithmetics by multiplying divisor and RAW value by 65535 ( + * floating point arithmetic by multiplying divisor and RAW value by 65535 ( * uint16_t max). */ #define RES_DIV (78642)