Skip to content

Commit a53a40c

Browse files
author
Michael Wilson
committed
Don't need to explicitly nullify dictionaries
1 parent 82fd9c4 commit a53a40c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1227,7 +1227,7 @@ <h2 id="MIDIMessageEventInit">
12271227
</h2>
12281228
<pre class="idl">
12291229
dictionary MIDIMessageEventInit: EventInit {
1230-
Uint8Array? data;
1230+
Uint8Array data;
12311231
};
12321232
</pre>
12331233
<dl>
@@ -1301,7 +1301,7 @@ <h2 id="MIDIConnectionEventInit">
13011301
</h2>
13021302
<pre class="idl">
13031303
dictionary MIDIConnectionEventInit: EventInit {
1304-
MIDIPort? port;
1304+
MIDIPort port;
13051305
};
13061306
</pre>
13071307
<dl>

0 commit comments

Comments
 (0)