diff --git a/content/docs/typechecking-with-proptypes.md b/content/docs/typechecking-with-proptypes.md index 05fed5b0e..e8a6a318e 100644 --- a/content/docs/typechecking-with-proptypes.md +++ b/content/docs/typechecking-with-proptypes.md @@ -99,7 +99,7 @@ MyComponent.propTypes = { // is shown if the prop isn't provided. requiredFunc: PropTypes.func.isRequired, - // A value of any data type + // A required value of any data type requiredAny: PropTypes.any.isRequired, // You can also specify a custom validator. It should return an Error