From 9f4f34f2816a0330f8cd582c7c215c091e1d282c Mon Sep 17 00:00:00 2001 From: davhojt Date: Sun, 1 May 2022 19:29:21 +0100 Subject: [PATCH] docs(get): correct grammar --- subjects/get/README.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/subjects/get/README.md b/subjects/get/README.md index 15e64dcd..ef673e8d 100644 --- a/subjects/get/README.md +++ b/subjects/get/README.md @@ -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: