Fixed typo on border (#956)

Fixed minor issue in function name
This commit is contained in:
Brian 2024-11-20 14:37:02 -07:00 committed by ArthurSonzogni
parent 8e25a75b73
commit aae4e55e43
No known key found for this signature in database
GPG Key ID: 41D98248C074CD6C

View File

@ -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<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