Skip to content

Commit

Permalink
Fix #980: buffer in constructors is nullable
Browse files Browse the repository at this point in the history
AudioBufferSourceOptions.buffer and ConvolverOptions.buffer can null
when used to construct the corresponding nodes.  Make it explicit.
  • Loading branch information
Raymond Toy committed Sep 19, 2016
1 parent 8af15bc commit a8283e3
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 @@ -4319,7 +4319,7 @@ <h2>
</p>
<dl title="dictionary AudioBufferSourceOptions" class="idl">
<dt>
AudioBuffer buffer
AudioBuffer? buffer
</dt>
<dd>
The audio asset to be played. This is equivalent to assigning
Expand Down Expand Up @@ -6361,7 +6361,7 @@ <h2>
<dl title="dictionary ConvolverOptions : AudioNodeOptions" class=
"idl">
<dt>
AudioBuffer buffer
AudioBuffer? buffer
</dt>
<dd>
The desired buffer for the <a><code>ConvolverNode</code></a>.
Expand Down

0 comments on commit a8283e3

Please sign in to comment.