summaryrefslogtreecommitdiff
path: root/source/fitz/ftoa.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/fitz/ftoa.c')
-rw-r--r--source/fitz/ftoa.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/fitz/ftoa.c b/source/fitz/ftoa.c
index 4ec492e9..a16a9346 100644
--- a/source/fitz/ftoa.c
+++ b/source/fitz/ftoa.c
@@ -1,7 +1,7 @@
#include "mupdf/fitz.h"
/*
- Convert IEEE single precison numbers into decimal ASCII strings, while
+ Convert IEEE single precision numbers into decimal ASCII strings, while
satisfying the following two properties:
1) Calling strtof or '(float) strtod' on the result must produce the
original float, independent of the rounding mode used by strtof/strtod.
@@ -166,7 +166,7 @@ static int
k_comp(int n)
{
/* Avoid ceil and floating point multiplication for better
- * performace and portability. Instead use the approximation
+ * performance and portability. Instead use the approximation
* log10(2) ~ 1233/(2^12). Tests show that this gives the correct
* result for all values of n in the range -500..500. */
int tmp = n + DIY_SIGNIFICAND_SIZE - 1;