diff --git a/slitherin/detectors/strange_setter.py b/slitherin/detectors/strange_setter.py index 2782caa..44332fb 100644 --- a/slitherin/detectors/strange_setter.py +++ b/slitherin/detectors/strange_setter.py @@ -66,7 +66,7 @@ def _is_strange_setter(self, fun: Function) -> bool: return intersection_len != len(fun.parameters) def _is_strange_constructor(self, fun: Function) -> bool: - """Checks if constructor setqs nothing""" + """Checks if constructor sets nothing""" return self._is_strange_setter(fun) def _detect(self) -> List[Output]: