diff --git a/README.md b/README.md
index 0f9cbac..dc8c0b1 100644
--- a/README.md
+++ b/README.md
@@ -68,7 +68,7 @@ export default class Component extends React.Component {
| **marginTop** | union(String | Number)
| | *optional*. Margin-top property ("auto" to align self bottom) |
| **marginRight** | union(String | Number)
| | *optional*. Margin-right property ("auto" to align self left) |
| **marginBottom** | union(String | Number)
| | *optional*. Margin-bottom property ("auto" to align self top) |
-| **grow** | union(Boolean | Number)
| | *optional*. Property (for parent primary axis) |
+| **grow** | union(Boolean | Number)
| | *optional*. Flex-grow property |
| **shrink** | union(Boolean | Number)
| | *optional*. Flex-shrink property |
| **basis** | union(String | Number)
| | *optional*. Flex-basis property |
| **wrap** | Boolean
| | *optional*. Wrap content |
diff --git a/src/FlexView.tsx b/src/FlexView.tsx
index 7625701..b29eb3f 100644
--- a/src/FlexView.tsx
+++ b/src/FlexView.tsx
@@ -43,7 +43,7 @@ type FlexViewProps = {
marginRight?: string | number;
/** margin-bottom property ("auto" to align self top) */
marginBottom?: string | number;
- /** grow property (for parent primary axis) */
+ /** flex-grow property */
grow?: boolean | number;
/** flex-shrink property */
shrink?: boolean | number;