From e19d8d1fa376e0478f26c0daeb93e2cbfbddc55b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20=C5=9Aliwak?= Date: Fri, 20 Mar 2020 18:54:10 +0100 Subject: [PATCH] [yul-phaser] GeneticAlgorithm::runNextRound(): Fix outdated docstring --- tools/yulPhaser/GeneticAlgorithms.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/yulPhaser/GeneticAlgorithms.h b/tools/yulPhaser/GeneticAlgorithms.h index 96c027738..f6c809a8b 100644 --- a/tools/yulPhaser/GeneticAlgorithms.h +++ b/tools/yulPhaser/GeneticAlgorithms.h @@ -58,8 +58,8 @@ public: GeneticAlgorithm& operator=(GeneticAlgorithm const&) = delete; virtual ~GeneticAlgorithm() = default; - /// The method that actually implements the algorithm. Should use @a m_population as input and - /// replace it with the updated state after the round. + /// The method that actually implements the algorithm. Should accept the current population in + /// @a _population and return the updated one after the round. virtual Population runNextRound(Population _population) = 0; };