Merge pull request #1517 from stweil/typos
[openjpeg.git] / src / lib / openjpip / byte_manager.h
index 02c806e0b3f1485db20ae32b1669d56e0c4d0025..3c7a91bef54d163aaf1acba85cfa24b8acf0b7a5 100644 (file)
@@ -42,7 +42,7 @@ typedef uint64_t Byte8_t;
 /**
  * fetch bytes of data in file stream
  *
- * @param[in] fd     file discriptor
+ * @param[in] fd     file descriptor
  * @param[in] offset start Byte position
  * @param[in] size   Byte length
  * @return           pointer to the fetched data
@@ -53,7 +53,7 @@ Byte_t * fetch_bytes(int fd, OPJ_OFF_T offset, OPJ_SIZE_T size);
 /**
  * fetch a 1-byte Byte codes in file stream
  *
- * @param[in] fd     file discriptor
+ * @param[in] fd     file descriptor
  * @param[in] offset start Byte position
  * @return           fetched codes
  */
@@ -62,7 +62,7 @@ Byte_t fetch_1byte(int fd, OPJ_OFF_T offset);
 /**
  * fetch a 2-byte big endian Byte codes in file stream
  *
- * @param[in] fd     file discriptor
+ * @param[in] fd     file descriptor
  * @param[in] offset start Byte position
  * @return           fetched codes
  */
@@ -71,7 +71,7 @@ Byte2_t fetch_2bytebigendian(int fd, OPJ_OFF_T offset);
 /**
  * fetch a 4-byte big endian Byte codes in file stream
  *
- * @param[in] fd     file discriptor
+ * @param[in] fd     file descriptor
  * @param[in] offset start Byte position
  * @return           fetched codes
  */
@@ -80,7 +80,7 @@ Byte4_t fetch_4bytebigendian(int fd, OPJ_OFF_T offset);
 /**
  * fetch a 8-byte big endian Byte codes in file stream
  *
- * @param[in] fd     file discriptor
+ * @param[in] fd     file descriptor
  * @param[in] offset start Byte position
  * @return           fetched codes
  */
@@ -122,7 +122,7 @@ void modify_4Bytecode(Byte4_t code, Byte_t *stream);
 /**
  * Get file size
  *
- * @param[in] fd file discriptor
+ * @param[in] fd file descriptor
  * @return       file size
  */
 OPJ_OFF_T get_filesize(int fd);