Update flex.cpp (#860)

fix typo
This commit is contained in:
ccn 2024-05-06 06:53:37 -04:00 committed by GitHub
parent a58e6e6bcf
commit 65296b9aa3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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