This repository was archived by the owner on Feb 20, 2019. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ export default multiply
44 * This method will perform multiply 2 numbers.
55 *
66 * @param {Number } num1 - first number
7- * @param {Number } num2 - second number
7+ * @param {Number } num2 - second number
88 * @return {Number } - Result of multiplying first number by second number
99 */
1010function multiply ( num1 , num2 ) {
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ export default startsWith
33/**
44 * Original Source: http://stackoverflow.com/a/646631/5954939
55 *
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.
77 *
88 * @param {String } str - The string to validate against
99 * @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
55 * @Description This method will perform Subtract operation.
66 *
77 * @param {Number } num1 - first number for Subtraction
8- * @param {Number } num2 - second number for Subtraction
8+ * @param {Number } num2 - second number for Subtraction
99 * @return {Number } - Result of Subtraction
1010 */
1111function Subtract ( num1 , num2 ) {
You can’t perform that action at this time.
0 commit comments