Skip to content

Commit 734f3f5

Browse files
authored
Fix return tag on processSvg (feathericons#946)
The `@returns` line for the `processSvg` function was using `@param`
1 parent a08d064 commit 734f3f5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

bin/process-svg.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import DEFAULT_ATTRS from '../src/default-attrs.json';
77
/**
88
* Process SVG string.
99
* @param {string} svg - An SVG string.
10-
* @param {Promise<string>}
10+
* @returns {Promise<string>}
1111
*/
1212
function processSvg(svg) {
1313
return (

0 commit comments

Comments
 (0)