From: Daniel Garcia-Sanchez Date: Wed, 21 Aug 2019 13:38:10 +0000 (+0200) Subject: Fix typo in HDF5 documentation X-Git-Tag: v9.2.0-rc1~1207^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F8615%2Fhead;p=dealii.git Fix typo in HDF5 documentation --- diff --git a/include/deal.II/base/hdf5.h b/include/deal.II/base/hdf5.h index d4011943e8..4516cea5fb 100644 --- a/include/deal.II/base/hdf5.h +++ b/include/deal.II/base/hdf5.h @@ -54,7 +54,7 @@ DEAL_II_NAMESPACE_OPEN * * An example is shown below * @code - * HDF5::File data_file(filename, HDF5::File::Mode::create); + * HDF5::File data_file(filename, HDF5::File::FileAccessMode::create); * double double_attribute = 2.2; * data_file.set_attribute("double_attribute", double_attribute); * auto group = data_file.create_group("group");