Skip to content

Commit

Permalink
Fix typos. (#801)
Browse files Browse the repository at this point in the history
  • Loading branch information
1uc authored Jul 12, 2023
1 parent 5f71511 commit 8423365
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/highfive/H5DataSpace.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ class DataSpace: public Object {
/// \code{.cpp}
/// // Create a DataSpace with 2 dimensions: 1 and 3
/// DataSpace{1, 3};
/// \since 2.1
/// \endcode
/// \since 2.1
DataSpace(const std::initializer_list<size_t>& dims);

/// \brief Create a DataSpace of N-dimensions from direct values.
Expand Down Expand Up @@ -145,7 +145,7 @@ class DataSpace: public Object {
/// \since 1.3
explicit DataSpace(DataspaceType space_type);

/// \brief Create a copy of the DataSpace with will have different id.
/// \brief Create a copy of the DataSpace which will have different id.
///
/// \code{.cpp}
/// DataSpace dspace1(1, 3);
Expand Down Expand Up @@ -193,7 +193,7 @@ class DataSpace: public Object {
/// different from the current size of the dataset.
///
/// \code{.cpp}
/// DataSpace dspace(std::vector<size_t>{1, 3}, std::vector<size_t>{UNLIMITED, 10};
/// DataSpace dspace(std::vector<size_t>{1, 3}, std::vector<size_t>{UNLIMITED, 10});
/// dspace.getMaxDimensions(); // Return {UNLIMITED, 10}
/// \endcode
///
Expand Down

0 comments on commit 8423365

Please sign in to comment.