fix(misc) typo

This commit is contained in:
Ali Karpuzoglu 2021-01-26 12:38:49 +01:00 committed by GitHub
parent 6fd280a960
commit 6ca3c6e43a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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. * @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) { export function getStartWithVideoMuted(stateful: Object | Function) {
return Boolean(getPropertyValue(stateful, 'startWithVideoMuted', START_WITH_AUDIO_VIDEO_MUTED_SOURCES)); return Boolean(getPropertyValue(stateful, 'startWithVideoMuted', START_WITH_AUDIO_VIDEO_MUTED_SOURCES));