From afb836a5114426e9f904b26116583e34341312b7 Mon Sep 17 00:00:00 2001 From: Bernhard Mueller Date: Tue, 13 Aug 2019 19:19:31 +0200 Subject: [PATCH] Fix comment --- mythril/laser/ethereum/plugins/plugin_factory.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mythril/laser/ethereum/plugins/plugin_factory.py b/mythril/laser/ethereum/plugins/plugin_factory.py index dd8b11f3..154917c8 100644 --- a/mythril/laser/ethereum/plugins/plugin_factory.py +++ b/mythril/laser/ethereum/plugins/plugin_factory.py @@ -45,7 +45,7 @@ class PluginFactory: def build_function_selector_plugin( whitelist: List[str], blacklist: List[str] ) -> LaserPlugin: - """ Creates an instance of the mutation pruner plugin""" + """ Creates an instance of the function selector plugin""" from mythril.laser.ethereum.plugins.implementations.function_selector import ( FunctionSelector, )