Manually merge doc fixes from 1.3
diff --git a/library/error.c b/library/error.c
index 1a82cc9..36b9032 100644
--- a/library/error.c
+++ b/library/error.c
@@ -352,7 +352,7 @@
         if( use_ret == -(MBEDTLS_ERR_RSA_KEY_GEN_FAILED) )
             mbedtls_snprintf( buf, buflen, "RSA - Something failed during generation of a key" );
         if( use_ret == -(MBEDTLS_ERR_RSA_KEY_CHECK_FAILED) )
-            mbedtls_snprintf( buf, buflen, "RSA - Key failed to pass the libraries validity check" );
+            mbedtls_snprintf( buf, buflen, "RSA - Key failed to pass the library's validity check" );
         if( use_ret == -(MBEDTLS_ERR_RSA_PUBLIC_FAILED) )
             mbedtls_snprintf( buf, buflen, "RSA - The public key operation failed" );
         if( use_ret == -(MBEDTLS_ERR_RSA_PRIVATE_FAILED) )
diff --git a/library/x509.c b/library/x509.c
index 08a1ec3..e97f82d 100644
--- a/library/x509.c
+++ b/library/x509.c
@@ -449,7 +449,7 @@
             if( *p == end_set )
                 break;
 
-            /* Mark this item as being only one in a set */
+            /* Mark this item as being no the only one in a set */
             cur->next_merged = 1;
 
             cur->next = mbedtls_malloc( sizeof( mbedtls_x509_name ) );