summaryrefslogtreecommitdiff
path: root/tools/source/generic/bigint.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'tools/source/generic/bigint.cxx')
-rw-r--r--tools/source/generic/bigint.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/source/generic/bigint.cxx b/tools/source/generic/bigint.cxx
index fcb7da378fe5..260e4415bd70 100644
--- a/tools/source/generic/bigint.cxx
+++ b/tools/source/generic/bigint.cxx
@@ -33,7 +33,7 @@ static const long MY_MAXSHORT = 0x00007fff;
static const long MY_MINSHORT = -MY_MAXSHORT;
/*
- * The algorithms for Addition, Substraction, Multiplication and Divison
+ * The algorithms for Addition, Subtraction, Multiplication and Division
* of large numbers originate from SEMINUMERICAL ALGORITHMS by
* DONALD E. KNUTH in the series The Art of Computer Programming:
* chapter 4.3.1. The Classical Algorithms.
@@ -196,7 +196,7 @@ void BigInt::AddLong( BigInt& rB, BigInt& rErg )
rErg.bIsNeg = bIsNeg && rB.bIsNeg;
rErg.bIsBig = true;
}
- // If one of the values is negative, perform substraction instead
+ // If one of the values is negative, perform subtraction instead
else if (bIsNeg)
{
bIsNeg = false;