From a5489f5b8376b604aae1e6144414487ee2bdda9a Mon Sep 17 00:00:00 2001 From: Josselin Date: Fri, 11 Feb 2022 16:47:33 +0100 Subject: [PATCH] improve printer help --- slither/printers/summary/declaration.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/slither/printers/summary/declaration.py b/slither/printers/summary/declaration.py index 629844a05..5888a1f00 100644 --- a/slither/printers/summary/declaration.py +++ b/slither/printers/summary/declaration.py @@ -3,8 +3,8 @@ from slither.utils.source_mapping import get_definition, get_implementation, get class Declaration(AbstractPrinter): - ARGUMENT = "decl" - HELP = "TODO" + ARGUMENT = "declaration" + HELP = "Prototype showing the source code declaration, implementation and references of the contracts objects" WIKI = "TODO"