From 6c64d5c54ca12a582ce4eb03a431571c5f831713 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 b67569803..596b7072e 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