From ad0392ec395450da8f9049e4abbe258f34f0f59c Mon Sep 17 00:00:00 2001 From: Brian <69195029+BrianAnakPintar@users.noreply.github.com> Date: Wed, 20 Nov 2024 14:37:02 -0700 Subject: [PATCH] Fixed typo on border (#956) Fixed minor issue in function name --- src/ftxui/dom/border.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ftxui/dom/border.cpp b/src/ftxui/dom/border.cpp index b675698..596b707 100644 --- a/src/ftxui/dom/border.cpp +++ b/src/ftxui/dom/border.cpp @@ -267,7 +267,7 @@ Decorator borderStyled(BorderStyle style, Color foreground_color) { }; } -/// @brief Draw a light border around the element. +/// @brief Draw a dashed border around the element. /// @ingroup dom /// @see border /// @see borderLight @@ -302,7 +302,7 @@ Element borderDashed(Element child) { return std::make_shared(unpack(std::move(child)), DASHED); } -/// @brief Draw a dashed border around the element. +/// @brief Draw a light border around the element. /// @ingroup dom /// @see border /// @see borderLight