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

Commit 0c8605d

Browse files
pipersweKent C. Dodds
authored andcommitted
fix(startsWith): correct spelling of Boolean (#92)
1 parent 2bed27a commit 0c8605d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/startsWith.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default startsWith
77
*
88
* @param {String} str - The string to validate against
99
* @param {String} head - The input to match with str substring
10-
* @return {Bollean} - True if 'str' starts with 'head', otherwise false
10+
* @return {Boolean} - True if 'str' starts with 'head', otherwise false
1111
*/
1212
function startsWith(str, head) {
1313
const tmp = str.substring(0, head.length)

0 commit comments

Comments
 (0)