From 363e9418674a4d588a7957698e6b3e14420de13c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Uld=C3=A9ric=20KIBONGUI?= Date: Wed, 26 Apr 2017 03:02:26 -0700 Subject: [PATCH] Fixed doc mismatch with the implementation Summary: Closes https://github.com/facebook/yoga/pull/518 Differential Revision: D4953729 Pulled By: emilsjolander fbshipit-source-id: 6693a0e44e8f12f07af5c3fe7c0475f8553a1df2 --- docs/_docs/api/c.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/_docs/api/c.md b/docs/_docs/api/c.md index 6560b4fe..e5105756 100644 --- a/docs/_docs/api/c.md +++ b/docs/_docs/api/c.md @@ -28,7 +28,7 @@ The following functions help manage the children of a node. void YGNodeInsertChild(YGNodeRef node, YGNodeRef child, uint32_t index); void YGNodeRemoveChild(YGNodeRef node, YGNodeRef child); YGNodeRef YGNodeGetChild(YGNodeRef node, uint32_t index); -uint32_t YGNodeChildCount(YGNodeRef node); +uint32_t YGNodeGetChildCount(YGNodeRef node); ``` ### Style getters & setters