diff --git a/armi/reactor/assemblies.py b/armi/reactor/assemblies.py index 701948244..6c0468b10 100644 --- a/armi/reactor/assemblies.py +++ b/armi/reactor/assemblies.py @@ -804,7 +804,7 @@ def iterBlocks(self, typeSpec=None, exact=False): ------- iterable of Block - See also + See Also -------- * :meth:`__iter__` - if no type spec provided, assemblies can be naturally iterated upon. diff --git a/armi/reactor/composites.py b/armi/reactor/composites.py index 2d48fa2c2..e9ed35ebb 100644 --- a/armi/reactor/composites.py +++ b/armi/reactor/composites.py @@ -2812,7 +2812,7 @@ def getChildrenWithFlags(self, typeSpec: TypeSpec, exactMatch=False): return list(self.iterChildrenWithFlags(typeSpec, exactMatch)) def iterChildrenOfType(self, typeName: str): - """Produce an iterator over all children with a specific input type name""" + """Produce an iterator over all children with a specific input type name.""" return filter(lambda c: c.getType() == typeName, self) def getChildrenOfType(self, typeName: str):