Update flex.cpp (#860)

fix typo
This commit is contained in:
ccn 2024-05-06 06:53:37 -04:00 committed by ArthurSonzogni
parent 343e3ab226
commit 306d1b6d3b
No known key found for this signature in database
GPG Key ID: 41D98248C074CD6C

View File

@ -92,14 +92,14 @@ class Flex : public Node {
} // namespace } // namespace
/// @brief An element that will take expand proportionnally to the space left in /// @brief An element that will take expand proportionally to the space left in
/// a container. /// a container.
/// @ingroup dom /// @ingroup dom
Element filler() { Element filler() {
return std::make_shared<Flex>(function_flex); return std::make_shared<Flex>(function_flex);
} }
/// @brief Make a child element to expand proportionnally to the space left in a /// @brief Make a child element to expand proportionally to the space left in a
/// container. /// container.
/// @ingroup dom /// @ingroup dom
/// ///