From d9e4b81b5dff65650b68d6dab2077d30d4649b2a Mon Sep 17 00:00:00 2001 From: Michael Herzog Date: Wed, 18 Mar 2026 19:14:26 +0100 Subject: [PATCH] AudioContext: Improve JSDoc. (#33213) --- src/audio/AudioContext.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/audio/AudioContext.js b/src/audio/AudioContext.js index b7df17fa386a35..ba91e31d0dd8d3 100644 --- a/src/audio/AudioContext.js +++ b/src/audio/AudioContext.js @@ -10,7 +10,7 @@ class AudioContext { /** * Returns the global native audio context. * - * @return {AudioContext} The native audio context. + * @return {Window.AudioContext} The native audio context. */ static getContext() { @@ -27,7 +27,7 @@ class AudioContext { /** * Allows to set the global native audio context from outside. * - * @param {AudioContext} value - The native context to set. + * @param {Window.AudioContext} value - The native context to set. */ static setContext( value ) {