GH601: Various spelling fixes.
[openssl.git] / crypto / dh / dh_key.c
index fcb851c0dde57c379831f2104ee23679b1c9d208..5ee38e3a876f7864a690329bf63ace64a55b10ff 100644 (file)
@@ -257,7 +257,7 @@ static int dh_bn_mod_exp(const DH *dh, BIGNUM *r,
 {
     /*
      * If a is only one word long and constant time is false, use the faster
-     * exponenentiation function.
+     * exponentiation function.
      */
     if (bn_get_top(a) == 1 && ((dh->flags & DH_FLAG_NO_EXP_CONSTTIME) != 0)) {
         BN_ULONG A = bn_get_words(a)[0];