From 6ca3c6e43a9a093047e2479ff52fc93fa13f82a2 Mon Sep 17 00:00:00 2001 From: Ali Karpuzoglu Date: Tue, 26 Jan 2021 12:38:49 +0100 Subject: [PATCH] fix(misc) typo --- react/features/base/media/functions.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/react/features/base/media/functions.js b/react/features/base/media/functions.js index 735446290..cce22cc21 100644 --- a/react/features/base/media/functions.js +++ b/react/features/base/media/functions.js @@ -79,10 +79,10 @@ export function getStartWithAudioMuted(stateful: Object | Function) { } /** - * Computes the startWithAudioMuted by retrieving its values from config, URL and settings. + * Computes the startWithVideoMuted by retrieving its values from config, URL and settings. * * @param {Object|Function} stateful - The redux state object or {@code getState} function. - * @returns {boolean} - The computed startWithAudioMuted value that will be used. + * @returns {boolean} - The computed startWithVideoMuted value that will be used. */ export function getStartWithVideoMuted(stateful: Object | Function) { return Boolean(getPropertyValue(stateful, 'startWithVideoMuted', START_WITH_AUDIO_VIDEO_MUTED_SOURCES));