Fix many spelling errors

This commit is contained in:
Landon Curt Noll
2021-02-12 22:09:47 -08:00
parent 486f4c5626
commit 507fe026e5
154 changed files with 482 additions and 476 deletions

View File

@@ -1983,7 +1983,7 @@ powvalue(VALUE *v1, VALUE *v2, VALUE *vres)
}
break;
/* unspported exponent type */
/* unsupported exponent type */
default:
*vres = error_value(E_POWI2);
break;
@@ -1995,7 +1995,7 @@ powvalue(VALUE *v1, VALUE *v2, VALUE *vres)
/*
* Raise one value to another value's power, within the specified error.
* Result is placed in the indicated location. If v3 is NULL, the
* value conf->epsiilon is used.
* value conf->epsilon is used.
*/
void
powervalue(VALUE *v1, VALUE *v2, VALUE *v3, VALUE *vres)
@@ -2017,7 +2017,7 @@ powervalue(VALUE *v1, VALUE *v2, VALUE *v3, VALUE *vres)
return;
}
/* NULL epsilon means use built-in epslion value */
/* NULL epsilon means use built-in epsilon value */
if (v3 == NULL) {
epsilon = conf->epsilon;
} else {