From 21d038b604fdeb13da0d5291d8ec72414fd28189 Mon Sep 17 00:00:00 2001 From: RGBCube Date: Sun, 20 Nov 2022 20:30:59 +0300 Subject: [PATCH] Remove redundant `pub` --- color/style.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/color/style.v b/color/style.v index 7958928..3322d7d 100644 --- a/color/style.v +++ b/color/style.v @@ -31,7 +31,7 @@ enum StyleImpl { strikethrough } -pub fn (s StyleImpl) render(msg string) string { +fn (s StyleImpl) render(msg string) string { return if no_color { msg } else {