Skip to content

Commit

Permalink
fix: fix bug where parameters table was reduced to only one row
Browse files Browse the repository at this point in the history
  • Loading branch information
customcommander committed Feb 7, 2021
1 parent d5cff67 commit bc2e939
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/slate-include.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const print_parameters = () =>
: (`Parameter | Type
--------- | ----` +
sym.params.reduce((str, p) =>
`\n${p.name} | ${p.type}`,
str + `\n${p.name} | ${p.type}`,
'')));
const print_examples = () =>
Expand Down

0 comments on commit bc2e939

Please sign in to comment.