From eb1e1ebf98d3da770e0a653aab91e2f0b2b6f3bf Mon Sep 17 00:00:00 2001 From: flacki Date: Sat, 2 Mar 2019 23:30:38 +0100 Subject: [PATCH] Fixed typo in documentation --- step1-04/demo/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/step1-04/demo/README.md b/step1-04/demo/README.md index 2ab9eec..939f92b 100644 --- a/step1-04/demo/README.md +++ b/step1-04/demo/README.md @@ -113,7 +113,7 @@ constructor(props) { #### Using [object destructuring](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Destructuring_assignment#Object_destructuring) for props and state -Both `props` are `state` are JavaScript objects. They have a bunch of key/value pairs in them which you can access via `this.props.foo` or `this.state.bar`. Sometimes they have MANY values inside of them which you need access to. You could do this: +Both `props` and `state` are JavaScript objects. They have a bunch of key/value pairs in them which you can access via `this.props.foo` or `this.state.bar`. Sometimes they have MANY values inside of them which you need access to. You could do this: ```js let cat = this.props.cat;