summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2018-06-20 23:41:46 +0200
committerJens Carl <j.carl43@gmx.de>2018-06-21 07:25:14 +0200
commit708dbf3a170cfd0564f1d872f33c27806b83cafe (patch)
tree7c36b213017dd20fb9fd068976c31a9b3bd430a7 /sc
parenteb678c01d35a485b9f79009c126e296d9e811d36 (diff)
Fix typos
Change-Id: I6a42d683e2d4d2d8887822dc17ab2fd7f51982a5 Reviewed-on: https://gerrit.libreoffice.org/56210 Tested-by: Jenkins Reviewed-by: Jens Carl <j.carl43@gmx.de>
Diffstat (limited to 'sc')
-rw-r--r--sc/qa/uitest/goalSeek/tdf43693.py2
-rw-r--r--sc/source/core/tool/formularesult.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/sc/qa/uitest/goalSeek/tdf43693.py b/sc/qa/uitest/goalSeek/tdf43693.py
index 991c91bbe46a..ade370e2b8fa 100644
--- a/sc/qa/uitest/goalSeek/tdf43693.py
+++ b/sc/qa/uitest/goalSeek/tdf43693.py
@@ -16,7 +16,7 @@ import pathlib
def get_url_for_data_file(file_name):
return pathlib.Path(org.libreoffice.unotest.makeCopyFromTDOC(file_name)).as_uri()
-#Bug 43693 - Goal Seek: reproducable crash using "target value search"
+#Bug 43693 - Goal Seek: reproducible crash using "target value search"
class tdf43693(UITestCase):
def test_tdf43693_goalSeek(self):
diff --git a/sc/source/core/tool/formularesult.cxx b/sc/source/core/tool/formularesult.cxx
index ad10f51a36ba..2431713cffdf 100644
--- a/sc/source/core/tool/formularesult.cxx
+++ b/sc/source/core/tool/formularesult.cxx
@@ -275,7 +275,7 @@ inline bool isValue( formula::StackVar sv )
{
return sv == formula::svDouble || sv == formula::svError
|| sv == formula::svEmptyCell
- // The initial unitialized result value is double 0.0, even if the type
+ // The initial uninitialized result value is double 0.0, even if the type
// is unknown, so the interpreter asking for it gets that double
// instead of having to convert a string which may result in #VALUE!
// (otherwise the unknown would be neither error nor double nor string)