diff options
author | jhendersonHDF <jhenderson@hdfgroup.org> | 2023-10-03 16:01:28 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-03 16:01:28 (GMT) |
commit | 34fcb9c5a480c70d43c85373850f91d079b3a179 (patch) | |
tree | 13a646eecb112484660e792239808efb94c34ef1 /src/H5Tnative.c | |
parent | 4261552068d5ffd7bd708db92aea99793a1bcf2a (diff) | |
download | hdf5-34fcb9c5a480c70d43c85373850f91d079b3a179.zip hdf5-34fcb9c5a480c70d43c85373850f91d079b3a179.tar.gz hdf5-34fcb9c5a480c70d43c85373850f91d079b3a179.tar.bz2 |
Fix several spelling/grammar issues (#3621)
Diffstat (limited to 'src/H5Tnative.c')
-rw-r--r-- | src/H5Tnative.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Tnative.c b/src/H5Tnative.c index 7574748..f83e9c3 100644 --- a/src/H5Tnative.c +++ b/src/H5Tnative.c @@ -579,7 +579,7 @@ H5T__get_native_integer(size_t prec, H5T_sign_t sign, H5T_direction_t direction, match = H5T_NATIVE_INT_MATCH_LLONG; native_size = sizeof(long long); } - else { /* If no native type matches the querried datatype, simply choose the type of biggest size. */ + else { /* If no native type matches the queried datatype, simply choose the type of biggest size. */ match = H5T_NATIVE_INT_MATCH_LLONG; native_size = sizeof(long long); } @@ -838,7 +838,7 @@ H5T__get_native_bitfield(size_t prec, H5T_direction_t direction, size_t *struct_ native_size = 8; align = H5T_NATIVE_UINT64_ALIGN_g; } - else { /* If no native type matches the querried datatype, simply choose the type of biggest size. */ + else { /* If no native type matches the queried datatype, simply choose the type of biggest size. */ tid = H5T_NATIVE_B64; native_size = 8; align = H5T_NATIVE_UINT64_ALIGN_g; |