From 49671292f7b87676e1854232eac64b3b454434a2 Mon Sep 17 00:00:00 2001 From: Reid Mason Date: Sat, 21 Oct 2023 00:52:10 +0100 Subject: [PATCH] fix: Corrected border shorthand functions explanation (#237) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 40777a4..21bc40c 100644 --- a/README.md +++ b/README.md @@ -220,7 +220,7 @@ pattern to the margin and padding shorthand functions. lipgloss.NewStyle(). Border(lipgloss.ThickBorder(), true, false) -// Add a thick border to the right and bottom sides. Rules are set clockwise +// Add a double border to the top and left sides. Rules are set clockwise // from top. lipgloss.NewStyle(). Border(lipgloss.DoubleBorder(), true, false, false, true)