Skip to content
This repository was archived by the owner on Feb 20, 2019. It is now read-only.

Commit 3559862

Browse files
Jehun SeemKent C. Dodds
Jehun Seem
authored and
Kent C. Dodds
committed
chore: fix wrong word and white space (#167)
1 parent 69fce67 commit 3559862

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/multiply.js

+1-1
Original file line numberDiff line numberDiff 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
*/
1010
function multiply(num1, num2) {

src/startsWith.js

+1-1
Original file line numberDiff line numberDiff 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

src/subtract.js

+1-1
Original file line numberDiff line numberDiff 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
*/
1111
function Subtract(num1, num2) {

0 commit comments

Comments
 (0)