Skip to content
This repository was archived by the owner on Mar 31, 2025. It is now read-only.

Commit 63a05e2

Browse files
fix(trimWhitespaceTransform): function name had bad capitalization
1 parent 5e92ff4 commit 63a05e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jsdoc/services/transforms/trim-whitespace.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ var _ = require('lodash');
33
/**
44
* Trim excess whitespace from the value
55
*/
6-
module.exports = function trimWhiteSpaceTransform() {
6+
module.exports = function trimWhitespaceTransform() {
77
return function(doc, tag, value) {
88
if ( _.isString(value) ) {
99
return value.trim();

0 commit comments

Comments
 (0)