Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion site/source/docs/api_reference/wasm_audio_worklets.rst
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ processing graph as AudioWorkletNodes.

Once a class type is instantiated on the Web Audio graph and the graph is
running, a C/C++ function pointer callback will be invoked for each N samples
of the processed audio stream that flows through the node (where N is is the
of the processed audio stream that flows through the node (where N is the
number of samples per channel, exposed as ``AudioSampleFrame``'s
``samplesPerChannel``, always 128 in the 1.0 Web Audio API, though with the 1.1
API ``emscripten_create_audio_context()`` accepts a ``renderSizeHint`` option).
Expand Down
2 changes: 1 addition & 1 deletion site/source/docs/optimizing/Module-Splitting.rst
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ Here’s code implementing the base64 solution::
console.log(window.btoa(binary));
console.log("===END===");

Then the profile file can be created by by running::
Then the profile file can be created by running::

$ echo [pasted base64] | base64 --decode > profile.data

Expand Down
2 changes: 1 addition & 1 deletion site/source/docs/tools_reference/emcc.rst
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ Options that are modified or new in *emcc* are listed below:
[compile+link]
Write tar file containing inputs and command to reproduce invocation. When
sharing this file be aware that it will any object files, source files and
libraries that that were passed to the compiler.
libraries that were passed to the compiler.

.. _emcc-emit-symbol-map:

Expand Down
Loading