Skip to content
This repository was archived by the owner on Sep 26, 2022. It is now read-only.

Commit 9628884

Browse files
DinCahillFlorian-Schoenherr
authored andcommitted
docs(api): improve separators in slot props list
1 parent 8f233c4 commit 9628884

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/docs/src/routes/api/[slug].svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,9 +118,9 @@
118118
<tr>
119119
<td class="font-weight-bold text-mono">{slot.name}</td>
120120
<td>
121-
{#each slot.parameters as slotParam}
121+
{#each slot.parameters as slotParam, i}
122122
<code>{slotParam.name}</code>
123-
;
123+
{#if i < slot.parameters.length - 1}<span>, </span>{/if}
124124
{:else}None{/each}
125125
</td>
126126
<td>{slot.description || 'No Description'}</td>

0 commit comments

Comments
 (0)