From 6924586821805b7a338c8e746141f51e3ba29560 Mon Sep 17 00:00:00 2001 From: Andrea Gelmini Date: Tue, 22 May 2018 15:35:19 +0200 Subject: Fix typos Change-Id: Idbe136fbfd222e8baad588dc36a2f9b7ce6996ec Reviewed-on: https://gerrit.libreoffice.org/54590 Reviewed-by: Julien Nabet Tested-by: Jenkins --- cppu/source/typelib/typelib.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cppu') diff --git a/cppu/source/typelib/typelib.cxx b/cppu/source/typelib/typelib.cxx index 8d842cc40a4f..ac3b23567897 100644 --- a/cppu/source/typelib/typelib.cxx +++ b/cppu/source/typelib/typelib.cxx @@ -497,7 +497,7 @@ bool complete(typelib_TypeDescription ** ppTypeDescr, bool initTables) { ::typelib_typedescription_register( &pTD ); // replaces incomplete one OSL_ASSERT( pTD == *ppTypeDescr ); // has to merge into existing one - // insert into the chache + // insert into the cache MutexGuard aGuard( rInit.getMutex() ); if( !rInit.pCache ) rInit.pCache.reset( new TypeDescriptionList_Impl ); @@ -1994,7 +1994,7 @@ extern "C" void SAL_CALL typelib_typedescription_getByName( // on demand is activated. typelib_typedescription_register( ppRet ); - // insert into the chache + // insert into the cache MutexGuard aGuard( rInit.getMutex() ); if( !rInit.pCache ) rInit.pCache.reset( new TypeDescriptionList_Impl ); @@ -2052,7 +2052,7 @@ extern "C" void SAL_CALL typelib_typedescriptionreference_new( // on demand is activated. typelib_typedescription_register( &pRet ); - // insert into the chache + // insert into the cache MutexGuard aGuard( rInit.getMutex() ); if( !rInit.pCache ) rInit.pCache.reset( new TypeDescriptionList_Impl ); -- cgit