Fix typos in comments
diff --git a/include/polarssl/config.h b/include/polarssl/config.h
index f1470b3..bfd68c4 100644
--- a/include/polarssl/config.h
+++ b/include/polarssl/config.h
@@ -639,7 +639,7 @@
  * current polarssl_strerror().
  *
  * For new code, it is recommended to use polarssl_strerror() instead and
- * disabled this.
+ * disable this.
  *
  * Disable if you run into name conflicts and want to really remove the
  * error_strerror()
diff --git a/include/polarssl/ecdh.h b/include/polarssl/ecdh.h
index 428275d..525cade 100644
--- a/include/polarssl/ecdh.h
+++ b/include/polarssl/ecdh.h
@@ -47,7 +47,7 @@
  */
 typedef struct
 {
-    ecp_group grp;      /*!<  ellipitic curve used                          */
+    ecp_group grp;      /*!<  elliptic curve used                           */
     mpi d;              /*!<  our secret value (private key)                */
     ecp_point Q;        /*!<  our public value (public key)                 */
     ecp_point Qp;       /*!<  peer's public value (public key)              */
diff --git a/include/polarssl/ecdsa.h b/include/polarssl/ecdsa.h
index 71e5a0c..d99a17a 100644
--- a/include/polarssl/ecdsa.h
+++ b/include/polarssl/ecdsa.h
@@ -40,7 +40,7 @@
  */
 typedef struct
 {
-    ecp_group grp;      /*!<  ellipitic curve used          */
+    ecp_group grp;      /*!<  elliptic curve used           */
     mpi d;              /*!<  secret signature key          */
     ecp_point Q;        /*!<  public signature key          */
     mpi r;              /*!<  first integer from signature  */