summaryrefslogtreecommitdiff
path: root/sal
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2015-07-07 23:14:45 +0200
committerMichael Stahl <mstahl@redhat.com>2015-07-08 12:21:19 +0200
commite544f449eded2738b45de4be13c72b128a16bafe (patch)
tree3e779fd42f9a17d2b2d62cd8fe43c6bf63d78953 /sal
parent307edd412e4fe3a74378959f5d93f5a2a44f1b60 (diff)
Fix typos
Change-Id: I020c7ce4d9aa93cb0292378a410cdb9f7788e920 Signed-off-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'sal')
-rw-r--r--sal/osl/unx/file_misc.cxx2
-rw-r--r--sal/osl/w32/file_dirvol.cxx2
-rw-r--r--sal/qa/OStringBuffer/rtl_OStringBuffer.cxx4
3 files changed, 4 insertions, 4 deletions
diff --git a/sal/osl/unx/file_misc.cxx b/sal/osl/unx/file_misc.cxx
index 125afeab8044..f5075810598a 100644
--- a/sal/osl/unx/file_misc.cxx
+++ b/sal/osl/unx/file_misc.cxx
@@ -567,7 +567,7 @@ oslFileError SAL_CALL osl_createDirectoryPath(
osl::systemPathRemoveSeparator(sys_path);
// const_cast because sys_path is a local copy which we want to modify inplace instead of
- // coyp it into another buffer on the heap again
+ // copy it into another buffer on the heap again
return create_dir_recursively_(sys_path.pData->buffer, aDirectoryCreationCallbackFunc, pData);
}
diff --git a/sal/osl/w32/file_dirvol.cxx b/sal/osl/w32/file_dirvol.cxx
index cb95dd684664..bd5bb0272c93 100644
--- a/sal/osl/w32/file_dirvol.cxx
+++ b/sal/osl/w32/file_dirvol.cxx
@@ -682,7 +682,7 @@ oslFileError SAL_CALL osl_createDirectoryPath(
// const_cast because sys_path is a local copy
// which we want to modify inplace instead of
- // coyp it into another buffer on the heap again
+ // copy it into another buffer on the heap again
return oslTranslateFileError(create_dir_recursively_(
sys_path.pData, aDirectoryCreationCallbackFunc, pData));
}
diff --git a/sal/qa/OStringBuffer/rtl_OStringBuffer.cxx b/sal/qa/OStringBuffer/rtl_OStringBuffer.cxx
index c73fb88af58c..c67fe6a2d5e4 100644
--- a/sal/qa/OStringBuffer/rtl_OStringBuffer.cxx
+++ b/sal/qa/OStringBuffer/rtl_OStringBuffer.cxx
@@ -407,7 +407,7 @@ namespace rtl_OStringBuffer
CPPUNIT_ASSERT_MESSAGE
(
- "length of ascci string of size 1",
+ "length of ascii string of size 1",
aStrBuf.getLength() == expVal
);
}
@@ -538,7 +538,7 @@ namespace rtl_OStringBuffer
CPPUNIT_ASSERT_MESSAGE
(
- "capacity of ascci string of size 1",
+ "capacity of ascii string of size 1",
aStrBuf.getCapacity() == expVal
);
}