From 9d0649d1dd4b0fffb9a618f16aaf89b9b2e7e500 Mon Sep 17 00:00:00 2001 From: Gavin Ridley Date: Fri, 7 Feb 2020 16:42:10 -0500 Subject: [PATCH] fix typo --- include/openmc/distribution.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/openmc/distribution.h b/include/openmc/distribution.h index 33ff2ffcbf..92c10aed3e 100644 --- a/include/openmc/distribution.h +++ b/include/openmc/distribution.h @@ -64,7 +64,7 @@ public: double sample(uint64_t* seed) const; double a() const { return a_; } - double b() const { return a_; } + double b() const { return b_; } private: double a_; //!< Lower bound of distribution double b_; //!< Upper bound of distribution