Skip to content

Commit 28e6e68

Browse files
authored
Editorial: align with IDL (void → undefined)
1 parent 596a524 commit 28e6e68

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

fetch.bs

+3-3
Original file line numberDiff line numberDiff line change
@@ -5426,11 +5426,11 @@ typedef (sequence<sequence<ByteString>> or record<ByteString, ByteStrin
54265426
interface Headers {
54275427
constructor(optional HeadersInit init);
54285428

5429-
void append(ByteString name, ByteString value);
5430-
void delete(ByteString name);
5429+
undefined append(ByteString name, ByteString value);
5430+
undefined delete(ByteString name);
54315431
ByteString? get(ByteString name);
54325432
boolean has(ByteString name);
5433-
void set(ByteString name, ByteString value);
5433+
undefined set(ByteString name, ByteString value);
54345434
iterable<ByteString, ByteString>;
54355435
};
54365436
</pre>

0 commit comments

Comments
 (0)