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

Commit 081e8cb

Browse files
fix(extractNameTransform): function had incorrect name
1 parent 63a05e2 commit 081e8cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jsdoc/services/transforms/extract-name.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ var NAME_AND_DESCRIPTION = /^\s*(\[([^\]=]+)(?:=([^\]]+))?\]|\S+)((?:[ \t]*\-\s*
88
* Extract the name information from a tag
99
* @param {Tag} tag The tag to process
1010
*/
11-
module.exports = function extractNameTranform() {
11+
module.exports = function extractNameTransform() {
1212
return function(doc, tag, value) {
1313

1414
tag.description = value.replace(NAME_AND_DESCRIPTION, function(match, name, optionalName, defaultValue, description, dashDescription) {

0 commit comments

Comments
 (0)