From d2e1dcf8208d488351b4235eccf02ec4e38d703e Mon Sep 17 00:00:00 2001 From: davhojt Date: Sat, 30 Apr 2022 00:01:51 +0100 Subject: [PATCH] docs(more-or-less): correct grammar --- subjects/more-or-less/README.md | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/subjects/more-or-less/README.md b/subjects/more-or-less/README.md index c8d3e0db..c24402bd 100644 --- a/subjects/more-or-less/README.md +++ b/subjects/more-or-less/README.md @@ -2,14 +2,13 @@ ### Instructions -Create 4 functions - -- `more` that takes 1 argument and add 1 to it -- `less` that takes 1 argument and subtract 1 to it -- `add` that takes 2 arguments and add them -- `sub` that takes 2 arguments and subtract them +Create 4 functions: +- `more` that takes 1 argument and adds 1 to it. +- `less` that takes 1 argument and subtracts 1 from it. +- `add` that takes 2 arguments and adds them together. +- `sub` that takes 2 arguments and subtracts the second argument from the first. ### Notions -- [nan-academy.github.io/js-training/examples/functions](https://nan-academy.github.io/js-training/examples/functions.js) -- [nan-academy.github.io/js-training/examples/primitive-and-operators](https://nan-academy.github.io/js-training/examples/primitive-and-operators.js) +- [Functions](https://nan-academy.github.io/js-training/examples/functions.js) +- [Primitives and Operators](https://nan-academy.github.io/js-training/examples/primitive-and-operators.js)