From 3ff11280a11f71385360fd1c04ad5bcaec0ba04b Mon Sep 17 00:00:00 2001 From: Lewis Gross <43077972+lewisgross1296@users.noreply.github.com> Date: Thu, 11 Aug 2022 13:26:12 -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 46284dea2e..bc7ecaa922 100644 --- a/include/openmc/tallies/tally.h +++ b/include/openmc/tallies/tally.h @@ -47,7 +47,8 @@ public: void set_nuclides(const vector& nuclides); - const vector& filters() const { return filters_; } // returns vector of inidices corresponding to the tally this is called on + //! 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