Fix return tag on processSvg (#946)

The `@returns` line for the `processSvg` function was using `@param`
This commit is contained in:
Ryan DiMascio
2021-09-21 22:58:00 -07:00
committed by GitHub
parent a08d064842
commit 734f3f5114

View File

@@ -7,7 +7,7 @@ import DEFAULT_ATTRS from '../src/default-attrs.json';
/**
* Process SVG string.
* @param {string} svg - An SVG string.
* @param {Promise<string>}
* @returns {Promise<string>}
*/
function processSvg(svg) {
return (