Skip to content

Commit aace1ea

Browse files
authored
Fix markup error
Two tables were missing `<tr>` in their head.
1 parent 4c55acb commit aace1ea

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

index.bs

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8538,7 +8538,7 @@ JavaScript Object values.
85388538
constrained among the three string types.
85398539
The following conversions have the described results:
85408540
<table class="data">
8541-
<thead><th>Value</th><th>Passed to type</th><th>Result</th></thead>
8541+
<thead><tr><th>Value</th><th>Passed to type</th><th>Result</th></thead>
85428542
<tr>
85438543
<td><code>{"😞": 1}</code></td>
85448544
<td><code>[=record=]&lt;ByteString, double></code></td>
@@ -12579,9 +12579,10 @@ the table, and the operation must have the return type given in the third column
1257912579

1258012580
<table id="table-default-method-steps" class="data">
1258112581
<thead>
12582-
<th>[=Identifier=]
12583-
<th>[=Default method steps=]
12584-
<th>[=Return type=]</th>
12582+
<tr>
12583+
<th>[=Identifier=]
12584+
<th>[=Default method steps=]
12585+
<th>[=Return type=]</th>
1258512586
<tbody>
1258612587
<tr>
1258712588
<td>"<code>toJSON</code>"

0 commit comments

Comments
 (0)