Skip to content

Commit 344ec1f

Browse files
namedgraphclaude
andcommitted
Fix rowspan values in HTTP API method table
DELETE row declared rowspan="3" but only has two failure entries (404, 405); PATCH row declared rowspan="2" but only has one failure entry (422). Both caused empty/misaligned cells in the rendered docs. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 0110222 commit 344ec1f

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

docs/reference/http-api.ttl

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -113,9 +113,9 @@
113113
<td><a href="../administration/ontologies/#constraints">Constraint</a> violation</td>
114114
</tr>
115115
<tr>
116-
<th rowspan="3"><code id="ld-delete">DELETE</code></th>
117-
<td rowspan="3">Removes the requested document</td>
118-
<td rowspan="3"><code>204 No Content</code></td>
116+
<th rowspan="2"><code id="ld-delete">DELETE</code></th>
117+
<td rowspan="2">Removes the requested document</td>
118+
<td rowspan="2"><code>204 No Content</code></td>
119119
<td><code>404 Not Found</code></td>
120120
<td>Document with request URI not found</td>
121121
</tr>
@@ -124,9 +124,9 @@
124124
<td>Deleting root, owner, or secretary documents is not allowed</td>
125125
</tr>
126126
<tr>
127-
<th rowspan="2"><code id="ld-patch">PATCH</code></th>
128-
<td rowspan="2">Modifies a document using SPARQL Update</td>
129-
<td rowspan="2"><code>204 No Content</code></td>
127+
<th><code id="ld-patch">PATCH</code></th>
128+
<td>Modifies a document using SPARQL Update</td>
129+
<td><code>204 No Content</code></td>
130130
<td><code>422 Unprocessable Entity</code></td>
131131
<td>SPARQL update string violates syntax constraints</td>
132132
</tr>

0 commit comments

Comments
 (0)