From c324b8a546b0c94676d607392540a6102eb50130 Mon Sep 17 00:00:00 2001 From: jetsetting-stressball <22154255+jetsetting-stressball@users.noreply.github.com> Date: Fri, 2 Nov 2018 14:15:26 -0400 Subject: [PATCH] Update height-and-width.md (#616) Correcting grammar for clarity. --- docs/height-and-width.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/height-and-width.md b/docs/height-and-width.md index 6d6b7d3bad62db..e14899e8aaa502 100644 --- a/docs/height-and-width.md +++ b/docs/height-and-width.md @@ -33,7 +33,7 @@ Setting dimensions this way is common for components that should always render a ## Flex Dimensions -Use `flex` in a component's style to have the component expand and shrink dynamically based on available space. Normally you will use `flex: 1`, which tells a component to fill all available space, shared evenly amongst each other component with the same parent. The larger the `flex` given, the higher the ratio of space a component will take compared to its siblings. +Use `flex` in a component's style to have the component expand and shrink dynamically based on available space. Normally you will use `flex: 1`, which tells a component to fill all available space, shared evenly amongst other components with the same parent. The larger the `flex` given, the higher the ratio of space a component will take compared to its siblings. > A component can only expand to fill available space if its parent has dimensions greater than 0. If a parent does not have either a fixed `width` and `height` or `flex`, the parent will have dimensions of 0 and the `flex` children will not be visible.