Skip to content

Commit

Permalink
Don't need to explicitly nullify dictionaries
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Wilson committed Oct 5, 2023
1 parent 82fd9c4 commit a53a40c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1227,7 +1227,7 @@ <h2 id="MIDIMessageEventInit">
</h2>
<pre class="idl">
dictionary MIDIMessageEventInit: EventInit {
Uint8Array? data;
Uint8Array data;
};
</pre>
<dl>
Expand Down Expand Up @@ -1301,7 +1301,7 @@ <h2 id="MIDIConnectionEventInit">
</h2>
<pre class="idl">
dictionary MIDIConnectionEventInit: EventInit {
MIDIPort? port;
MIDIPort port;
};
</pre>
<dl>
Expand Down

0 comments on commit a53a40c

Please sign in to comment.