From d8341ca3b0051667cc6d11a67aa98202b8ae4561 Mon Sep 17 00:00:00 2001 From: Yury Zholobov Date: Fri, 24 Nov 2017 06:15:01 -0800 Subject: [PATCH] Fix horizontally to vertically in FlexDirection=Column doc Summary: Closes https://github.com/facebook/yoga/pull/663 Differential Revision: D6407915 Pulled By: emilsjolander fbshipit-source-id: 03e2896b9b98cf476a92e7c87fd8dc3f7cef9047 --- docs/_docs/flexbox/flex-direction.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/_docs/flexbox/flex-direction.md b/docs/_docs/flexbox/flex-direction.md index caed98a4..ff139f0d 100644 --- a/docs/_docs/flexbox/flex-direction.md +++ b/docs/_docs/flexbox/flex-direction.md @@ -12,7 +12,7 @@ The `FlexDirection` property controls the direction in which children are laid o * `ColumnReverse` * `RowReverse` -The `Column` option stacks children horizontally from top to bottom, and the `Row` option stacks children from left to right. The `Reverse` variants of the options reverse the order. If your layout supports right-to-left direction, Yoga will automatically toggle between `Row` and `RowReverse` as necessary. +The `Column` option stacks children vertically from top to bottom, and the `Row` option stacks children from left to right. The `Reverse` variants of the options reverse the order. If your layout supports right-to-left direction, Yoga will automatically toggle between `Row` and `RowReverse` as necessary. `FlexDirection` introduces another important aspect of Flexbox, the main and cross axes. This is important as other properties will reference which axis they operate on. Simply put, the main axis follows the `FlexDirection` and the cross axis crosses the main axis at a 90 degree angle.