From ce5c41334f63523cf1f8dff3fde0c5380676c8b8 Mon Sep 17 00:00:00 2001 From: Drew Johnson Date: Thu, 6 Feb 2025 09:56:22 -0800 Subject: [PATCH] Typo --- armi/materials/material.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/armi/materials/material.py b/armi/materials/material.py index 02435fac3..dae46a741 100644 --- a/armi/materials/material.py +++ b/armi/materials/material.py @@ -759,7 +759,7 @@ class Fluid(Material): def __init_subclass__(cls): # Undo the parent-aware density wrapping. Fluids do not expand in the same way solids, so - # Fluid.density(T) is correct. This does not hold for solids because they thermalaly expand. + # Fluid.density(T) is correct. This does not hold for solids because they thermally expand. if hasattr(cls.density, "__wrapped__"): cls.density = cls.density.__wrapped__