From 198b5bdad44557beaf8ed27b7bc5bac529252528 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Delaporte-Mathurin?= <40028739+RemDelaporteMathurin@users.noreply.github.com> Date: Sat, 28 Jan 2023 08:50:39 -0500 Subject: [PATCH] Update openmc/mesh.py Co-authored-by: Paul Romano --- openmc/mesh.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openmc/mesh.py b/openmc/mesh.py index 60c5ade40d..84350afd37 100644 --- a/openmc/mesh.py +++ b/openmc/mesh.py @@ -434,7 +434,7 @@ class RegularMesh(StructuredMesh): self._lower_left = lower_left if self.upper_right is not None and any(np.isclose(self.upper_right, lower_left)): - raise ValueError("mesh cannot have zero thickness is any dimension") + raise ValueError("Mesh cannot have zero thickness in any dimension") @upper_right.setter def upper_right(self, upper_right):