tools/source/datetime/duration.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit c041b5a3bc3301f137b141e1731b711178d536d2
Author:     Andrea Gelmini <andrea.gelm...@gelma.net>
AuthorDate: Sat Jun 17 18:09:17 2023 +0200
Commit:     Julien Nabet <serval2...@yahoo.fr>
CommitDate: Sat Jun 17 20:50:14 2023 +0200

    Fix typo
    
    Change-Id: I1d7b271eed63dd0272bd92431eaac3e2dfbfe2b5
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/153206
    Tested-by: Jenkins
    Reviewed-by: Julien Nabet <serval2...@yahoo.fr>

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<sal_Int64>(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)

Reply via email to