Fix some minor typos in comments

Fix spelling mistakes and typos.
This commit is contained in:
Simon Butcher 2016-03-01 13:16:57 +00:00
parent 0c6aad90f2
commit c0957bdc13
2 changed files with 8 additions and 6 deletions

View file

@ -995,7 +995,8 @@ typedef int mbedtls_ssl_send_t( void *ctx,
* *
* \note That callback may be either blocking or non-blocking. * \note That callback may be either blocking or non-blocking.
* *
* \param ctx Context for the send callback (typically a file descriptor) * \param ctx Context for the receive callback (typically a file
* descriptor)
* \param buf Buffer to write the received data to * \param buf Buffer to write the received data to
* \param len Length of the receive buffer * \param len Length of the receive buffer
* *
@ -1019,7 +1020,7 @@ typedef int mbedtls_ssl_recv_t( void *ctx,
* timeout delay expires, or the operation is interrupted by a * timeout delay expires, or the operation is interrupted by a
* signal. * signal.
* *
* \param ctx Context for the send callback (typically a file descriptor) * \param ctx Context for the receive callback (typically a file descriptor)
* \param buf Buffer to write the received data to * \param buf Buffer to write the received data to
* \param len Length of the receive buffer * \param len Length of the receive buffer
* \param timeout Maximum nomber of millisecondes to wait for data * \param timeout Maximum nomber of millisecondes to wait for data
@ -1620,9 +1621,10 @@ int mbedtls_ssl_conf_own_cert( mbedtls_ssl_config *conf,
* want to use \c mbedtls_ssl_conf_psk_cb() instead. * want to use \c mbedtls_ssl_conf_psk_cb() instead.
* *
* \note Currently clients can only register one pre-shared key. * \note Currently clients can only register one pre-shared key.
* In other words, the servers' idendity hint is ignored. * In other words, the servers' identity hint is ignored.
* Please contact us if you need ability to set multiple PSKs * Support for setting multiple PSKs on clients and selecting
* on clients and select one based on the identity hint. * one based on the identity hint is not a planned feature but
* feedback is welcomed.
* *
* \param conf SSL configuration * \param conf SSL configuration
* \param psk pointer to the pre-shared key * \param psk pointer to the pre-shared key

View file

@ -2600,7 +2600,7 @@ static int ssl_parse_certificate_request( mbedtls_ssl_context *ssl )
* *
* Same goes for the hash in TLS 1.2's signature_algorithms: at this * Same goes for the hash in TLS 1.2's signature_algorithms: at this
* point we only have one hash available (see comments in * point we only have one hash available (see comments in
* write_certificate_verify), so let's jsut use what we have. * write_certificate_verify), so let's just use what we have.
* *
* However, we still minimally parse the message to check it is at least * However, we still minimally parse the message to check it is at least
* superficially sane. * superficially sane.