From 050ac8a4132fa5c888eb7c3518ea8c95dc5f6bec Mon Sep 17 00:00:00 2001 From: Joe Vilches Date: Tue, 3 Dec 2024 19:16:56 -0800 Subject: [PATCH] Properly camelcase mainAxisownerSize in FlexLine (#1762) Summary: Pull Request resolved: https://github.com/facebook/yoga/pull/1762 X-link: https://github.com/facebook/react-native/pull/48077 OCD strikes again. Grepped this time to make sure we didn't miss any cases for this specific param name Changelog: [Internal] Reviewed By: NickGerleman Differential Revision: D66715777 fbshipit-source-id: 3e881a15b3b2836a4a55b11d7ec621541b92a05d --- yoga/algorithm/FlexLine.cpp | 4 ++-- yoga/algorithm/FlexLine.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/yoga/algorithm/FlexLine.cpp b/yoga/algorithm/FlexLine.cpp index cb5c72891b..dc0a300add 100644 --- a/yoga/algorithm/FlexLine.cpp +++ b/yoga/algorithm/FlexLine.cpp @@ -17,7 +17,7 @@ FlexLine calculateFlexLine( yoga::Node* const node, const Direction ownerDirection, const float ownerWidth, - const float mainAxisownerSize, + const float mainAxisOwnerSize, const float availableInnerWidth, const float availableInnerMainDim, Node::LayoutableChildren::Iterator& iterator, @@ -70,7 +70,7 @@ FlexLine calculateFlexLine( direction, mainAxis, child->getLayout().computedFlexBasis, - mainAxisownerSize, + mainAxisOwnerSize, ownerWidth) .unwrap(); diff --git a/yoga/algorithm/FlexLine.h b/yoga/algorithm/FlexLine.h index 9ec72ea831..3f2ef2f17b 100644 --- a/yoga/algorithm/FlexLine.h +++ b/yoga/algorithm/FlexLine.h @@ -66,7 +66,7 @@ FlexLine calculateFlexLine( yoga::Node* node, Direction ownerDirection, float ownerWidth, - float mainAxisownerSize, + float mainAxisOwnerSize, float availableInnerWidth, float availableInnerMainDim, Node::LayoutableChildren::Iterator& iterator,