Skip to content

Commit

Permalink
Fixed typo on border (#956)
Browse files Browse the repository at this point in the history
Fixed minor issue in function name
  • Loading branch information
BrianAnakPintar authored and ArthurSonzogni committed Dec 26, 2024
1 parent 8e25a75 commit aae4e55
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ftxui/dom/border.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -302,7 +302,7 @@ Element borderDashed(Element child) {
return std::make_shared<Border>(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
Expand Down

0 comments on commit aae4e55

Please sign in to comment.