Skip to content

Commit 2544138

Browse files
authored
Merge pull request #356 from nvlang/master
Fix several typos
2 parents 55349f7 + 49528e4 commit 2544138

42 files changed

Lines changed: 84 additions & 84 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

advanced/build/component.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ of the MathJax configuration set by the page that loads this combined
159159
component. Similarly, the accessibility settings in the code snipped
160160
above would override any settings made in the web page, and the three
161161
TeX packages would always be included, even if the MathJax
162-
configuration from the apge explicitly removed them. This is because
162+
configuration from the page explicitly removed them. This is because
163163
the changes made by the ``insert()`` command are made *after* the page
164164
configuration is moved to :data:`MathJax.config` (which occurs during
165165
the first ``import`` at line 1), so these override the page settings.

advanced/build/custom.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ The complete list of options for the :data:`sre` block can be found in the
283283
<https://github.com/Speech-Rule-Engine/speech-rule-engine?tab=readme-ov-file#options>`__.
284284

285285
Here is a complete page that converts a math expression into Nemeth
286-
Beaille.
286+
Braille.
287287

288288
.. code-block:: html
289289

advanced/model.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ processors are called `jax`, and are described in more detail
2020
below.
2121

2222
When MathJax runs, it looks through the page for special markers that
23-
delimitindicate mathematics; for each such marker, it locates an
23+
delimit/indicate mathematics; for each such marker, it locates an
2424
appropriate input jax, which it uses to convert the mathematics into
2525
an internal form (a MathML tree as javascript objects), and then calls
2626
an output jax to transform the internal format into HTML content that
@@ -34,7 +34,7 @@ for page authors to write by hand. Many sites prefer to use a more
3434
natural input format like LaTeX or AsciiMath, especially when the
3535
sites allow readers to enter comments or post questions and answers.
3636
In this case, the mathematics is regular text within the page, and the
37-
author must indicate what parts of the text are methematics by using
37+
author must indicate what parts of the text are mathematics by using
3838
special `delimiters` to mark the start and of the expressions within
3939
the text. For example, LaTeX expressions may be delimited by
4040
``\(...\)`` for in-line expressions, and ``\[...\]`` or ``$$...$$``

advanced/synchronize.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Synchronizing your code with MathJax
55
####################################
66

7-
MathJax provides several mecahnisms for synchronizing your code with
7+
MathJax provides several mechanisms for synchronizing your code with
88
the actions taken by MathJax, including function that return promises,
99
a processing queue to which you can add your own actions, filter
1010
queues for the input and output jax that allow you to run functions

advanced/synchronize/hooks.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ performed its initial typesetting operation. These functions and
1515
promises are described in detail in the :ref:`startup-action` section.
1616

1717
The MathJax :ref:`loader <loader-options>` component also provides a
18-
number of mechanisms for hookin into its actions. The first is the
18+
number of mechanisms for hooking into its actions. The first is the
1919
:ref:`loader.ready() <loader-ready>` and :ref:`loader.failed()
2020
<loader-failed>` functions in the :data:`loader` block of your MathJax
2121
configuration. The first is called when the loader has loaded all the

advanced/synchronize/renderactions.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ Some extensions add new render actions. These include
112112
* - ENRICHED
113113
- 30
114114
- enrich
115-
- a11y/sementic-enrich
115+
- a11y/semantic-enrich
116116
* - ATTACHSPEECH
117117
- 210
118118
- attachSpeech
@@ -220,7 +220,7 @@ original TeX notation as a tooltip on the MathJax output:
220220
MathJax.config.addTooltip(item);
221221
}
222222
},
223-
(math, doc) => MathJax.config.addTootip(math),
223+
(math, doc) => MathJax.config.addTooltip(math),
224224
]
225225
}
226226
},
@@ -328,7 +328,7 @@ display style TeX expressions.
328328
}
329329
};
330330
331-
Thius render action replaces the usual ``find`` action with one
331+
This render action replaces the usual ``find`` action with one
332332
that looks for all the ``<tex>`` and ``<dtex>`` elements in the
333333
document, and checks that they have only one child that is a text
334334
element. If so, it creates a new :data:`MathItem` object with the

advanced/typeset.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ in memory and a corresponding decrease in performance over time.
109109
To deal with changing content, MathJax provides a function that tells
110110
it to forget about math that it has previously typeset:
111111

112-
.. js:function:: MathJax.typsetClear(elements)
112+
.. js:function:: MathJax.typesetClear(elements)
113113

114114
:param HTMLElement[] elements: An optional array of HTML elements
115115
whose typeset math is to be
@@ -200,8 +200,8 @@ on every change the the input area. This example uses the HTML that
200200
the user enters, updates an output area using that, and calls MathJax
201201
to process the expressions it contains. Of course, in practice, you
202202
would want to sanitize the user input to prevent the user from
203-
entering maliceous code, so this is just the bare-bones version meant
204-
to highlight how to handle the MathJax update portion of the erditor
203+
entering malicious code, so this is just the bare-bones version meant
204+
to highlight how to handle the MathJax update portion of the editor
205205
tasks.
206206

207207
The details are discussed after the code listing below.
@@ -371,7 +371,7 @@ updates are requested while MathJax is running.
371371

372372
Line 66 tells MathJax to forget about any mathematics that was
373373
previously typeset in the preview area. Without this, MathJax's list
374-
of typeet math would grow with each character typed, as it holds onto
374+
of typeset math would grow with each character typed, as it holds onto
375375
all the previous copies of the math that it had typeset in the past.
376376
This call must come before the DOM is changed, so that MathJax can
377377
tell which math is inside the material being removed.

basic/a11y-extensions.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ Highlighting
128128
============
129129

130130
During interactive exploration, the sub-expression that is being
131-
explorered is automatically highlighted, by default with a blue
131+
explored is automatically highlighted, by default with a blue
132132
background color. The highlighting can be customized by changing
133133
`Background` or `Foreground` colors in the `Highlight` sub-menu of
134134
the `Explorer` section of the MathJax contextual menu. In addition,

input/asciimath.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ AsciiMath is designed. It is possible, however, to configure
134134
MathJax's version of AsciiMath to allow for both in-line and displayed
135135
equations, just like in TeX.
136136

137-
Here is a configuratino that does that:
137+
Here is a configuration that does that:
138138

139139
.. code-block:: html
140140

input/tex/html.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ Since Markdown is applied to the page first, it may convert your
8585
subscript markers into italics (inserting ``<i>`` or ``<em>`` tags
8686
into your mathematics, which will cause MathJax to ignore the math).
8787
If expressions with two or more subscripts aren't being displayed
88-
properly, and especially if you see the interveneing text appearing in
88+
properly, and especially if you see the intervening text appearing in
8989
italics, that is a good sign that Markdown is processing the
9090
underscores before MathJax runs.
9191

0 commit comments

Comments
 (0)