Skip to content

Commit 557dc86

Browse files
authored
Fix docs of AudioDestinationNode
1 parent 0107afc commit 557dc86

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/node/destination.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ use super::{
99
/// graph in a given context. usually the speakers of your device, or the node that
1010
/// will "record" the audio data with an OfflineAudioContext.
1111
///
12-
/// AudioDestinationNode has no output (no AudioNode can be linked after it in the
13-
/// audio graph) and one input. The number of channels of its input must be between
14-
/// 0 and the maxChannelCount value.
12+
/// The output of a AudioDestinationNode is produced by summing its input, allowing to capture
13+
/// the output of an AudioContext into, for example, a MediaStreamAudioDestinationNode, or a
14+
/// MediaRecorder.
1515
///
1616
/// - MDN documentation: <https://developer.mozilla.org/en-US/docs/Web/API/AudioDestinationNode>
1717
/// - specification: <https://webaudio.github.io/web-audio-api/#AudioDestinationNode>

0 commit comments

Comments
 (0)