From c7a51d50a2697882c9c42983b27dce0d64095ff1 Mon Sep 17 00:00:00 2001 From: davhojt Date: Sun, 1 May 2022 18:54:46 +0100 Subject: [PATCH] docs(cut-corners): correct grammar --- subjects/cut-corners/README.md | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/subjects/cut-corners/README.md b/subjects/cut-corners/README.md index da457a75..5e36ba8b 100644 --- a/subjects/cut-corners/README.md +++ b/subjects/cut-corners/README.md @@ -2,25 +2,24 @@ ### Instructions -Create a function for each rounding math functions: +Create some functions which behave like JavaScript's `Math` rounding functions: -- round (like `Math.round`) -- ceil (like `Math.ceil`) -- floor (like `Math.floor`) -- trunc (like `Math.trunc`) +- `round`: which behaves similar to `Math.round()`. +- `ceil`: which behaves similar to `Math.ceil()`. +- `floor`: which behaves similar to `Math.floor()`. +- `trunc`: which behaves similar to `Math.trunc()`. -Some restrictions apply: - -- You may not use strings conversion to do it -- No bitwise operator +> Some restrictions apply: +> - You may not use strings conversion to do it +> - No bitwise operator ### Notions -- [devdocs.io/javascript/global_objects/math](https://devdocs.io/javascript/global_objects/math) +- [Math](https://devdocs.io/javascript/global_objects/math) ### 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 Math.round = Math.ceil = Math.floor = Math.trunc = undefined