From c798b6c6515a612b39a7af63fa47fbfef50d8148 Mon Sep 17 00:00:00 2001 From: Patrick Shriwise Date: Wed, 10 Feb 2021 11:38:22 -0600 Subject: [PATCH] Fix docstring typo. --- include/openmc/mesh.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/openmc/mesh.h b/include/openmc/mesh.h index 340ea44fdc..d787db15ae 100644 --- a/include/openmc/mesh.h +++ b/include/openmc/mesh.h @@ -543,7 +543,7 @@ private: std::string eq_system_name_; //!< name of the equation system holding OpenMC results std::unordered_map variable_map_; //!< mapping of variable names (tally scores) to libMesh variable numbers libMesh::BoundingBox bbox_; //!< bounding box of the mesh - libMesh::dof_id_type first_element_id_; //!< if of the first element in the mesh + libMesh::dof_id_type first_element_id_; //!< id of the first element in the mesh }; #endif