Fixed typos in tls_writer method descriptions

This commit is contained in:
Martin Willi 2010-09-02 10:28:51 +02:00
parent bbdc85b66e
commit ea6d7cb4be
1 changed files with 2 additions and 2 deletions

View File

@ -66,14 +66,14 @@ struct tls_writer_t {
void (*write_data)(tls_writer_t *this, chunk_t value);
/**
* Append a chunk of data with a 16-bit length header.
* Append a chunk of data with a 8-bit length header.
*
* @param value value to append
*/
void (*write_data8)(tls_writer_t *this, chunk_t value);
/**
* Append a chunk of data with a 8-bit length header.
* Append a chunk of data with a 16-bit length header.
*
* @param value value to append
*/