summaryrefslogtreecommitdiff
path: root/starmath
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2020-09-22 13:13:39 +0200
committerJulien Nabet <serval2412@yahoo.fr>2020-09-22 20:57:26 +0200
commit218001e9f06f1cbe44abf2fbebfc360b682e432a (patch)
tree3d6d4c14ac0cf74bfe640090d0e8f7550e92cb02 /starmath
parenta7c89adaa0f205aead3c0ad43c0113ff81ba1d98 (diff)
Fix typos
Change-Id: I2030700ea031c03242c13d1cb96babf2bc255bab Reviewed-on: https://gerrit.libreoffice.org/c/core/+/103163 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'starmath')
-rw-r--r--starmath/inc/node.hxx20
-rw-r--r--starmath/source/visitors.cxx2
2 files changed, 11 insertions, 11 deletions
diff --git a/starmath/inc/node.hxx b/starmath/inc/node.hxx
index c0320e6bef5e..6c28be36e98b 100644
--- a/starmath/inc/node.hxx
+++ b/starmath/inc/node.hxx
@@ -318,9 +318,9 @@ public:
sal_uInt16 GetRow() const { return sal::static_int_cast<sal_uInt16>(maNodeToken.nRow); }
/**
- * Gets the colum of the line in the text where the node is located.
+ * Gets the column of the line in the text where the node is located.
* It is used to do the visual <-> text correspondence.
- * @return colum
+ * @return column
*/
sal_uInt16 GetColumn() const { return sal::static_int_cast<sal_uInt16>(maNodeToken.nCol); }
@@ -464,7 +464,7 @@ public:
void ClearSubNodes();
/**
- * Sets subnodes, used for opperators.
+ * Sets subnodes, used for operators.
* @param pFirst
* @param pSecond
* @param pThird
@@ -695,8 +695,8 @@ public:
SmTextNode(const SmToken &rNodeToken, sal_uInt16 nFontDescP );
/**
- * Returns the font type being used (text, variabla, symbol, ...).
- * @retutn font type
+ * Returns the font type being used (text, variable, symbol, ...).
+ * @return font type
*/
sal_uInt16 GetFontDesc() const { return mnFontDesc; }
@@ -1328,7 +1328,7 @@ public:
void Accept(SmVisitor* pVisitor) override;
/**
- * Returns the node containing the data of the binary opperator.
+ * Returns the node containing the data of the binary operator.
* @return symbol data
*/
const SmNode* Symbol() const { return const_cast<SmBinHorNode *>(this)->Symbol(); }
@@ -1514,7 +1514,7 @@ public:
/**
* Checks if it is going to be used for a limit.
- * Example lim from { x towar 0 } { {sin x}over x } = 1
+ * Example lim from { x toward 0 } { {sin x}over x } = 1
* @return is a limit
*/
bool IsUseLimits() const { return mbUseLimits; };
@@ -1755,15 +1755,15 @@ public:
: SmStructureNode(SmNodeType::Oper, rNodeToken, 2) { }
/**
- * Returns the node with the opperator data
- * @return opperator data
+ * Returns the node with the operator data
+ * @return operator data
*/
const SmNode * GetSymbol() const { return const_cast<SmOperNode *>(this)->GetSymbol(); }
SmNode * GetSymbol();
/**
* Returns the height of the node in base to the symbol
- * ( rSymbol contains the opperator data )
+ * ( rSymbol contains the operator data )
* and the font format ( rFormat ).
* @param rSymbol
* @param rFormat
diff --git a/starmath/source/visitors.cxx b/starmath/source/visitors.cxx
index f663dcfb2d27..37a8fc7ab595 100644
--- a/starmath/source/visitors.cxx
+++ b/starmath/source/visitors.cxx
@@ -2435,7 +2435,7 @@ void SmNodeToTextVisitor::Visit( SmGlyphSpecialNode* pNode )
Append( pNode->GetToken( ).aText );
}
-//TODO to improve this it is requiered to improve mathmlimport.
+//TODO to improve this it is required to improve mathmlimport.
void SmNodeToTextVisitor::Visit( SmMathSymbolNode* pNode )
{
sal_Unicode cChar = pNode->GetToken().cMathChar;