This repository was archived by the owner on Feb 20, 2019. It is now read-only.
File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ export default multiply
4
4
* This method will perform multiply 2 numbers.
5
5
*
6
6
* @param {Number } num1 - first number
7
- * @param {Number } num2 - second number
7
+ * @param {Number } num2 - second number
8
8
* @return {Number } - Result of multiplying first number by second number
9
9
*/
10
10
function multiply ( num1 , num2 ) {
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ export default startsWith
3
3
/**
4
4
* Original Source: http://stackoverflow.com/a/646631/5954939
5
5
*
6
- * This method will return a bollean indicating whether a string starts with a given input.
6
+ * This method will return a boolean indicating whether a string starts with a given input.
7
7
*
8
8
* @param {String } str - The string to validate against
9
9
* @param {String } head - The input to match with str substring
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ export default Subtract
5
5
* @Description This method will perform Subtract operation.
6
6
*
7
7
* @param {Number } num1 - first number for Subtraction
8
- * @param {Number } num2 - second number for Subtraction
8
+ * @param {Number } num2 - second number for Subtraction
9
9
* @return {Number } - Result of Subtraction
10
10
*/
11
11
function Subtract ( num1 , num2 ) {
You can’t perform that action at this time.
0 commit comments