docs(get): correct grammar

This commit is contained in:
davhojt 2022-05-01 19:29:21 +01:00 committed by Dav Hojt
parent f7ddec3a1b
commit 9f4f34f281
1 changed files with 4 additions and 5 deletions

View File

@ -2,13 +2,12 @@
### Instructions
Create the `get` function.
It takes 2 arguments:
Create a function named `get` which takes two arguments:
- `src` an object
- `path` a string
- `src`: an object.
- `path`: a string representing a path.
And returns the value at the given string path.
Your function will return the value at the given `path` in the `src` object.
### Example: