Skip to content

Commit

Permalink
Fix typo in H5T_order_t enum (#4773)
Browse files Browse the repository at this point in the history
'bit endian' --> 'big endian'
  • Loading branch information
derobins authored and lrknox committed Aug 27, 2024
1 parent f8619f1 commit 5136404
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/H5Tpublic.h
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ typedef enum H5T_class_t {
typedef enum H5T_order_t {
H5T_ORDER_ERROR = -1, /**< error */
H5T_ORDER_LE = 0, /**< little endian */
H5T_ORDER_BE = 1, /**< bit endian */
H5T_ORDER_BE = 1, /**< big endian */
H5T_ORDER_VAX = 2, /**< VAX mixed endian */
H5T_ORDER_MIXED = 3, /**< Compound type with mixed member orders */
H5T_ORDER_NONE = 4 /**< no particular order (strings, bits,..) */
Expand Down

0 comments on commit 5136404

Please sign in to comment.