Skip to content

Commit e3b1eb9

Browse files
committed
layouts: cli.html: fix incorrect closing tag
The opening tag was a "td", but the closing tag a "th". Looks like browsers fix this up, but let's change it to be correct. updates 56679ae Signed-off-by: Sebastiaan van Stijn <[email protected]>
1 parent 3de8201 commit e3b1eb9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

layouts/_default/cli.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ <h1 class="scroll-mt-36">{{ .Title }}</h1>
1717
{{ with $data.short }}
1818
<tr>
1919
<th class="text-left w-32">Description</th>
20-
<td>{{ . }}</th>
20+
<td>{{ . }}</td>
2121
</tr>
2222
{{ end }}
2323
{{ with $data.usage }}

0 commit comments

Comments
 (0)