From 0eb520dad0c55dc881c72237e6dca3b2b981c927 Mon Sep 17 00:00:00 2001 From: davhojt Date: Wed, 22 Jun 2022 16:53:18 +0100 Subject: [PATCH] docs(all): correct grammar --- subjects/all/README.md | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/subjects/all/README.md b/subjects/all/README.md index 6a4a26c4..269742fc 100644 --- a/subjects/all/README.md +++ b/subjects/all/README.md @@ -2,18 +2,17 @@ ### Instructions -Create a function `all` that works like `Promise.all` but with objects. -(instead of arrays) - -### Notions - -- [nan-academy.github.io/js-training/examples/promise.js](https://nan-academy.github.io/js-training/examples/promise.js) -- [devdocs.io/javascript/global_objects/promise/all](https://devdocs.io/javascript/global_objects/promise/all) +Create a function named `all` that works like `Promise.all` but with objects (instead of arrays). ### Code provided -> all code provided will be added to your solution and doesn't need to be submited. +> The provided code will be added to your solution, and does not need to be submitted. ```js Promise.all = undefined ``` + +### Notions + +- [Promise.js](https://nan-academy.github.io/js-training/examples/promise.js) +- [Promise.all](https://devdocs.io/javascript/global_objects/promise/all)