From c041b5a3bc3301f137b141e1731b711178d536d2 Mon Sep 17 00:00:00 2001 From: Andrea Gelmini Date: Sat, 17 Jun 2023 18:09:17 +0200 Subject: Fix typo Change-Id: I1d7b271eed63dd0272bd92431eaac3e2dfbfe2b5 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/153206 Tested-by: Jenkins Reviewed-by: Julien Nabet --- tools/source/datetime/duration.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools') diff --git a/tools/source/datetime/duration.cxx b/tools/source/datetime/duration.cxx index 07f79929177f..c8cb4616eb08 100644 --- a/tools/source/datetime/duration.cxx +++ b/tools/source/datetime/duration.cxx @@ -67,7 +67,7 @@ Duration::Duration(double fTimeInDays) fFrac = ::rtl::math::approxFloor(fFrac); sal_Int64 nNS = static_cast(fFrac); // Round by 1 nanosecond if it's just 1 off to a second, i.e. - // 0999999999 or 0000000001. This could be losened to rounding by 2 or + // 0999999999 or 0000000001. This could be loosened to rounding by 2 or // such if necessary. const sal_Int64 nN = nNS % Time::nanoSecPerSec; if (std::abs(nN) == 1) -- cgit