From 6ea35b59197f79e03ea610f0272260ba52ef822a Mon Sep 17 00:00:00 2001 From: Egon Elbre Date: Fri, 21 Jan 2022 10:19:08 +0200 Subject: [PATCH] internal/weightdiff: add experimental notice --- internal/weightdiff/cmd.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/internal/weightdiff/cmd.go b/internal/weightdiff/cmd.go index 4aa2930..891ed1e 100644 --- a/internal/weightdiff/cmd.go +++ b/internal/weightdiff/cmd.go @@ -22,10 +22,11 @@ type Command struct { } func (*Command) Name() string { return "weight-diff" } -func (*Command) Synopsis() string { return "Compare binary symbol sizes." } +func (*Command) Synopsis() string { return "Compare binary symbol sizes. (Experimental)" } func (*Command) Usage() string { return `weight-diff : Compare binary sizes and the differences. + (Experimental) ` }