Skip to content

Commit fa4a059

Browse files
authored
Apply suggestions from PR review
Fix typos
1 parent c3a06f0 commit fa4a059

File tree

1 file changed

+2
-2
lines changed
  • articles/communication-services/tutorials/audio-quality-enhancements/includes

1 file changed

+2
-2
lines changed

articles/communication-services/tutorials/audio-quality-enhancements/includes/web.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ The `activeEffects` property returns an object with the names of the current act
7171
// Using the audio effects feature api
7272
const currentActiveEffects = audioEffectsFeatureApi.activeEffects;
7373

74-
// Create the noise supression instance
74+
// Create the noise suppression instance
7575
const deepNoiseSuppression = new DeepNoiseSuppressionEffect();
7676
// Its recommened to check support for the effect in the current environment using the isSupported API
7777
// method. Remember that Noise Supression is only supported on Desktop Browsers for Chrome and Edge
@@ -81,7 +81,7 @@ if (isDeepNoiseSuppressionSupported) {
8181
console.log('Noise supression is supported in local browser environment');
8282
}
8383

84-
// To start ACS Deep Noise Suppression,
84+
// To start ACS Deep Noise Suppression
8585
await audioEffectsFeatureApi.startEffects({
8686
noiseSuppression: deepNoiseSuppression
8787
});

0 commit comments

Comments
 (0)