diff --git a/files/en-us/web/api/report/index.html b/files/en-us/web/api/report/index.html index 7cb79966f48a5f3..3baa0c1c8a81ea9 100644 --- a/files/en-us/web/api/report/index.html +++ b/files/en-us/web/api/report/index.html @@ -17,9 +17,9 @@
Reports can be accessed in a number of ways:
reports
parameter of the callback function passed into the ReportingObserver()
constructor upon creation of a new observer instance. This contains the list of reports currently contained in the observer's report queue.reports
parameter of the callback function passed into the ReportingObserver()
constructor upon creation of a new observer instance. This contains the list of reports currently contained in the observer's report queue.iConfiguration
field of the configuration descriptor defining this configuration.
-var name = USBConfiguration.configurationNamediff --git a/files/en-us/web/api/web_audio_api/using_web_audio_api/index.html b/files/en-us/web/api/web_audio_api/using_web_audio_api/index.html index 61805e5caa2718e..f90f013c55596be 100644 --- a/files/en-us/web/api/web_audio_api/using_web_audio_api/index.html +++ b/files/en-us/web/api/web_audio_api/using_web_audio_api/index.html @@ -15,7 +15,7 @@ ---
Let's take a look at getting started with the Web Audio API. We'll briefly look at some concepts, then study a simple boombox example that allows us to load an audio track, play and pause it, and change its volume and stereo panning.
+Let's take a look at getting started with the Web Audio API. We'll briefly look at some concepts, then study a simple boombox example that allows us to load an audio track, play and pause it, and change its volume and stereo panning.
The Web Audio API does not replace the {{HTMLElement("audio")}} media element, but rather complements it, just like {{HTMLElement("canvas")}} coexists alongside the {{HTMLElement("img")}} element. Your use case will determine what tools you use to implement audio. If you want to control playback of an audio track, the <audio>
media element provides a better, quicker solution than the Web Audio API. If you want to carry out more complex audio processing, as well as playback, the Web Audio API provides much more power and control.