From c8bf74afac01f06b225a7460f4b6c8efdbf90851 Mon Sep 17 00:00:00 2001 From: Luc Grosheintz Date: Wed, 29 Nov 2023 19:04:26 +0100 Subject: [PATCH] Typos. (#873) --- include/highfive/H5DataType.hpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/highfive/H5DataType.hpp b/include/highfive/H5DataType.hpp index b2b1881f3..1c28626bf 100644 --- a/include/highfive/H5DataType.hpp +++ b/include/highfive/H5DataType.hpp @@ -96,7 +96,6 @@ class DataType: public Object { /// /// \brief Check the DataType was default constructed. - /// Such value might represent auto-detection of the datatype from a buffer /// bool empty() const noexcept; @@ -152,7 +151,7 @@ class FixedLengthStringType: public StringType { /// requires `4*n` bytes. /// /// The string padding is subtle, essentially it's just a hint. A - /// nullterminated string is guaranteed to have one `'\0'` which marks the + /// null-terminated string is guaranteed to have one `'\0'` which marks the /// semantic end of the string. The length of the buffer must be at least /// `size` bytes regardless. HDF5 will read or write `size` bytes, /// irrespective of the when the `\0` occurs.