From c3e43e8ad10bd90b3f1a02d91d9a4a847f1cde79 Mon Sep 17 00:00:00 2001 From: Mark Cui Pan Date: Sun, 12 Jan 2020 11:52:37 -0600 Subject: [PATCH] Correct mistakes in flexDirection description The current descriptions of the behavior for 'column' and 'column-reverse' when wrapping is enabled are incorrect. They state that the next line will start to the left of the first line. This PR edits these descriptions to say that the next line will start to the _right_ of the first line. --- docs/flexbox.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/flexbox.md b/docs/flexbox.md index 1a6a0929bab..affcd1205ac 100644 --- a/docs/flexbox.md +++ b/docs/flexbox.md @@ -23,11 +23,11 @@ In the following example, the red, yellow, and green views are all children in t - `row` Align children from left to right. If wrapping is enabled, then the next line will start under the first item on the left of the container. -- `column` (**default value**) Align children from top to bottom. If wrapping is enabled, then the next line will start to the left first item on the top of the container. +- `column` (**default value**) Align children from top to bottom. If wrapping is enabled, then the next line will start to the right of the first item on the top of the container. - `row-reverse` Align children from right to left. If wrapping is enabled, then the next line will start under the first item on the right of the container. -- `column-reverse` Align children from bottom to top. If wrapping is enabled, then the next line will start to the left first item on the bottom of the container. +- `column-reverse` Align children from bottom to top. If wrapping is enabled, then the next line will start to the right of the first item on the bottom of the container. You can learn more [here](https://yogalayout.com/docs/flex-direction).