Skip to content

Commit a4bde82

Browse files
committed
Update capitalization style of function name to align with convention
1 parent a212646 commit a4bde82

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Conversions/UpperCaseConversion.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@
1111
*/
1212

1313
/**
14-
* UpperCaseConversion takes any case-style string and converts it to the uppercase-style string.
14+
* upperCaseConversion takes any case-style string and converts it to the uppercase-style string.
1515
* @param {string} inputString Any case style string
1616
* @returns {string} Uppercase string
1717
*/
18-
const UpperCaseConversion = (inputString) => {
18+
const upperCaseConversion = (inputString) => {
1919
// Take a string and split it into characters.
2020
const newString = inputString.split('').map(char => {
2121
// Get a character code by the use charCodeAt method.
@@ -32,4 +32,4 @@ const UpperCaseConversion = (inputString) => {
3232
return newString.join('')
3333
}
3434

35-
export { UpperCaseConversion }
35+
export { upperCaseConversion }

0 commit comments

Comments
 (0)