Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Oliver Ruebel <[email protected]>
  • Loading branch information
stephprince and oruebel authored Sep 10, 2024
1 parent a6d86f9 commit ddde29a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/BaseIO.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ class BaseIO
const std::string& path) = 0;

/**
* @brief Checks whether an object already exists at the location in the file.
* @brief Checks whether a Dataset, Group, or Link already exists at the location in the file.
* @param path The location of the object in the file.
* @return Whether the object exists.
*/
Expand Down
2 changes: 1 addition & 1 deletion src/hdf5/HDF5IO.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ class HDF5IO : public BaseIO
const std::string& path) override;

/**
* @brief Checks whether an object already exists at the location in the file.
* @brief Checks whether a Dataset, Group, or Link already exists at the location in the file.
* @param path The location of the object in the file.
* @return Whether the object exists.
*/
Expand Down
2 changes: 1 addition & 1 deletion src/nwb/NWBFile.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ class NWBFile
const std::string identifierText;
std::shared_ptr<BaseIO> io;
static std::vector<SizeType> emptyContainerIndexes;
inline const static std::string acquisitionPath = "/acquisition/";
inline const static std::string acquisitionPath = "/acquisition";
};

} // namespace AQNWB::NWB

0 comments on commit ddde29a

Please sign in to comment.