Minor grammar fixes (#36643)

* Minor grammar fix
This commit is contained in:
Lauren Van Sloun
2019-08-20 09:36:22 -04:00
committed by Oliver Eyton-Williams
parent 38badd6259
commit 4507a6b254
3 changed files with 4 additions and 4 deletions

View File

@ -26,7 +26,7 @@ const profileUpdate = ({ name, age, nationality, location }) => {
```
This removes some extra lines and makes our code look neat.
This has the added benefit of not having to manipulate an entire object in a function; only the fields that are needed are copied inside the function.
This has the added benefit of not having to manipulate an entire object in a function only the fields that are needed are copied inside the function.
</section>
## Instructions