diff --git a/docs/higher-order-components.md b/docs/higher-order-components.md index ca2bffad7..7a907e83a 100644 --- a/docs/higher-order-components.md +++ b/docs/higher-order-components.md @@ -261,7 +261,7 @@ The most common signature for HOCs looks like this: ```js // React Redux's `connect` -const ConnectedComment = connect(commentSelector, commentActions)(Comment); +const ConnectedComment = connect(commentSelector, commentActions)(CommentList); ``` *What?!* If you break it apart, it's easier to see what's going on.