time(3): Fix spelling.

Noted by:	Gary Jennejohn <garyj@gmx.de>
MFC after:	1 week
Sponsored by:	NVIDIA Networking
This commit is contained in:
Hans Petter Selasky 2022-10-23 18:41:28 +02:00
parent eb805f4e0f
commit fdd9548333

View File

@ -556,7 +556,7 @@ hardclock_sync(int cpu)
}
/*
* Regular integer scaling formula without loosing precision:
* Regular integer scaling formula without losing precision:
*/
#define TIME_INT_SCALE(value, mul, div) \
(((value) / (div)) * (mul) + (((value) % (div)) * (mul)) / (div))
@ -581,7 +581,7 @@ TIME_ASSERT_VALID_HZ(HZ_MAXIMUM);
TIME_ASSERT_VALID_HZ(HZ_MINIMUM);
/*
* The forumla is mostly linear, but test some more common values just
* The formula is mostly linear, but test some more common values just
* in case:
*/
TIME_ASSERT_VALID_HZ(1024);