From b31c2bb5f13e045d79e865a0cedfc22be71236ed Mon Sep 17 00:00:00 2001 From: Kristoffer Strube Date: Wed, 6 Dec 2023 19:08:30 +0100 Subject: [PATCH] Swap `input` and `output` in audioDestination description --- index.bs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.bs b/index.bs index 8a9607a1d..236ed3e6b 100644 --- a/index.bs +++ b/index.bs @@ -4380,7 +4380,7 @@ Methods destination {{AudioNode}}.
-            destinationNode: The destinationNode parameter is the {{AudioNode}} to disconnect. If there is no connection to the destinationNode from the given input to the given output, an {{InvalidAccessError}} exception MUST be thrown.
+            destinationNode: The destinationNode parameter is the {{AudioNode}} to disconnect. If there is no connection to the destinationNode from the given output to the given input, an {{InvalidAccessError}} exception MUST be thrown.
             output: The output parameter is an index describing which output of the {{AudioNode}} from which to disconnect. If this parameter is out-of-bounds, an {{IndexSizeError}} exception MUST be thrown.
             input: The input parameter is an index describing which input of the destination {{AudioNode}} to disconnect. If this parameter is out-of-bounds, an {{IndexSizeError}} exception MUST be thrown.