From 6ef62fcaf100895defa6cc72904beae76b929d4c Mon Sep 17 00:00:00 2001 From: Lewis Gross <43077972+lewisgross1296@users.noreply.github.com> Date: Thu, 11 Aug 2022 13:26:29 -0500 Subject: [PATCH] documentation fix tally.h Co-authored-by: Patrick Shriwise --- include/openmc/tallies/tally.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/openmc/tallies/tally.h b/include/openmc/tallies/tally.h index bc7ecaa922..3cead91dc7 100644 --- a/include/openmc/tallies/tally.h +++ b/include/openmc/tallies/tally.h @@ -50,7 +50,8 @@ public: //! returns vector of indices corresponding to the tally this is called on const vector& filters() const { return filters_; } - int32_t filters(int i) const { return filters_[i]; } // i corresponds to the index of the filter for this tally + //! \brief Returns the tally filter at index i + int32_t filters(int i) const { return filters_[i]; } void set_filters(gsl::span filters);