docs(elementary): correct grammar

This commit is contained in:
davhojt 2022-05-01 18:26:27 +01:00 committed by Dav Hojt
parent a756b9c2f0
commit fc948efccc
1 changed files with 5 additions and 7 deletions

View File

@ -2,17 +2,15 @@
### Instructions
Create 3 functions:
Create 3 functions which each take `(a, b)` as arguments:
- `multiply` that act like the `*` operator without using it
- `divide` that do an integer division without using `/`
- `modulo` that act like the `%` operator without using it
> functions should have (a, b) as arguments
- `multiply` that acts like the `*` operator, without using it.
- `divide` that acts like the integer division operator `/`, without using it.
- `modulo` that acts like the `%` operator, without using it.
### 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.imul = undefined