From 13fae25c9d5618132448ee9e2bbe84f4442a6320 Mon Sep 17 00:00:00 2001 From: Matthew Andres Moreno Date: Mon, 5 Aug 2024 19:19:50 -0400 Subject: [PATCH] Fix typo --- pyrimidine/mixin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyrimidine/mixin.py b/pyrimidine/mixin.py index bc02ae0..1974377 100755 --- a/pyrimidine/mixin.py +++ b/pyrimidine/mixin.py @@ -63,7 +63,7 @@ def local_search(self, *args, **kwargs): raise NotImplementedError('If you apply a local search algorithm, you must define the `local_search` method.') def ezolve(self, max_iter=None, init=True): - # Extreamly eazy evolution method for lazybones + # Extremely eazy evolution method for lazybones max_iter = max_iter or self.max_iter if init: self.init()