diff --git a/src/Mod/Spreadsheet/App/Cell.cpp b/src/Mod/Spreadsheet/App/Cell.cpp
index e99cb0086f..1d4aef18d0 100644
--- a/src/Mod/Spreadsheet/App/Cell.cpp
+++ b/src/Mod/Spreadsheet/App/Cell.cpp
@@ -685,7 +685,7 @@ void Cell::visit(App::ExpressionVisitor &v)
}
/**
- * Decode aligment into its internal value.
+ * Decode alignment into its internal value.
*
* @param itemStr Alignment as a string
* @param alignment Current alignment. This is or'ed with the one in \a itemStr.
diff --git a/src/Mod/Spreadsheet/App/PropertyColumnWidths.cpp b/src/Mod/Spreadsheet/App/PropertyColumnWidths.cpp
index 3eab878625..71264498d3 100644
--- a/src/Mod/Spreadsheet/App/PropertyColumnWidths.cpp
+++ b/src/Mod/Spreadsheet/App/PropertyColumnWidths.cpp
@@ -110,13 +110,13 @@ void PropertyColumnWidths::Save(Base::Writer &writer) const
{
// Save column information
writer.Stream() << writer.ind() << "" << std::endl;
- writer.incInd(); // indention for 'ColumnInfo'
+ writer.incInd(); // indentation for 'ColumnInfo'
std::map::const_iterator coli = begin();
while (coli != end()) {
writer.Stream() << writer.ind() << "first) << "\" width=\"" << coli->second << "\" />" << std::endl;
++coli;
}
- writer.decInd(); // indention for 'ColumnInfo'
+ writer.decInd(); // indentation for 'ColumnInfo'
writer.Stream() << writer.ind() << "" << std::endl;
}
diff --git a/src/Mod/Spreadsheet/App/PropertyRowHeights.cpp b/src/Mod/Spreadsheet/App/PropertyRowHeights.cpp
index 7eba063b45..61692edd9b 100644
--- a/src/Mod/Spreadsheet/App/PropertyRowHeights.cpp
+++ b/src/Mod/Spreadsheet/App/PropertyRowHeights.cpp
@@ -85,14 +85,14 @@ void PropertyRowHeights::Save(Base::Writer &writer) const
{
// Save row information
writer.Stream() << writer.ind() << "" << std::endl;
- writer.incInd(); // indention for 'RowInfo'
+ writer.incInd(); // indentation for 'RowInfo'
std::map::const_iterator ri = begin();
while (ri != end()) {
writer.Stream() << writer.ind() << "first) << "\" height=\"" << ri->second << "\" />" << std::endl;
++ri;
}
- writer.decInd(); // indention for 'RowInfo'
+ writer.decInd(); // indentation for 'RowInfo'
writer.Stream() << writer.ind() << "
" << std::endl;
}
diff --git a/src/Mod/Spreadsheet/App/SheetPyImp.cpp b/src/Mod/Spreadsheet/App/SheetPyImp.cpp
index ab4d656b59..94d5e6a694 100644
--- a/src/Mod/Spreadsheet/App/SheetPyImp.cpp
+++ b/src/Mod/Spreadsheet/App/SheetPyImp.cpp
@@ -55,7 +55,7 @@ int SheetPy::PyInit(PyObject* /*args*/, PyObject* /*kwd*/)
return 0;
}
-// +++ methodes implementer ++++++++++++++++++++++++++++++++++++++++++++++++
+// +++ methods implementer ++++++++++++++++++++++++++++++++++++++++++++++++
PyObject* SheetPy::set(PyObject *args)
{