Skip to content

Commit

Permalink
fix(docs): replace incorrect HTML char code
Browse files Browse the repository at this point in the history
  • Loading branch information
Hyperkid123 committed Mar 2, 2021
1 parent ff2975c commit 8c3b4dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/docs/generate-functions-md.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ function createParams(item) {
let content = '';
if (item.params) {
item.params.forEach(param => {
content = `${content}\n|${param.name}|<code>${param.type.names.join('&124;')}</code>|${param.description}`;
content = `${content}\n|${param.name}|<code>${param.type.names.join('&#124')}</code>|${param.description}`;
});
}

Expand Down

0 comments on commit 8c3b4dd

Please sign in to comment.