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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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 (