Minor grammatical fixes

This commit is contained in:
Michael Frank
2021-05-09 22:08:25 +12:00
parent d677c68c28
commit 58d2eb108a
2 changed files with 19 additions and 19 deletions
+11 -11
View File
@@ -1,13 +1,13 @@
const add = function() {
}
const subtract = function() {
}
const sum = function() {
}
const multiply = function() {
@@ -15,18 +15,18 @@ const multiply = function() {
}
const power = function() {
}
const factorial = function() {
}
module.exports = {
add,
subtract,
sum,
multiply,
power,
factorial
add,
subtract,
sum,
multiply,
power,
factorial
}