Skip to content

Commit 7dd688c

Browse files
authored
[docs] fix spelling of juxtaposed (#2855)
1 parent b1d2afb commit 7dd688c

File tree

3 files changed

+10
-11
lines changed

3 files changed

+10
-11
lines changed

docs/src/submodules/FileFormats/LP.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ In addition to the grammar, there are the following rules:
3737
* Newlines are ignored, except where explicitly described
3838

3939
```
40-
<lp-file> :==
40+
<lp-file> :==
4141
<keyword-objective>\n
4242
[<section-objective>\n]
4343
<keyword-constraints>\n
@@ -52,7 +52,7 @@ In addition to the grammar, there are the following rules:
5252
i"min" | i"minimum" | i"minimize" | i"minimise"
5353
| i"max" | i"maximum" | i"maximize" | i"maximise"
5454
55-
<keyword-constraints> :==
55+
<keyword-constraints> :==
5656
(i"subject to" | i"st" | i"st." | i"s.t." | i"such that")[":"]
5757
5858
<keyword-bounds> :== i"bound" | i"bounds"
@@ -71,7 +71,7 @@ In addition to the grammar, there are the following rules:
7171
7272
<identifier> :== <char> (<char> | <digit> | ".")*
7373
74-
<number> :==
74+
<number> :==
7575
"+" <number>
7676
| "-" <number>
7777
| <digit>+[.(<digit>)*][("e" | "E")("+" | "-")(<digit>)+]
@@ -106,11 +106,11 @@ In addition to the grammar, there are the following rules:
106106
107107
<set-suffix> := <inequality> <number>
108108
109-
<set-prefix> := <number> <inequality>
109+
<set-prefix> := <number> <inequality>
110110
111111
<constraint-indicator> :== <identifier> "=" (0 | 1) "->" <expression> <set-suffix>
112112
113-
<constraint-sos> :==
113+
<constraint-sos> :==
114114
"S1::" (<identifier>":"<number>)+\n
115115
| "S2::" (<identifier>":"<number>)+\n
116116
@@ -138,7 +138,7 @@ integers
138138
x
139139
```
140140
Gurobi will interpret this as `x in MOI.Integer()`. FICO Xpress will interpret
141-
this as `x in MOI.ZeroOne()`.
141+
this as `x in MOI.ZeroOne()`.
142142

143143
FICO document this behavior, but they're an outlier.
144144

@@ -168,7 +168,7 @@ x >= 0
168168
end
169169
```
170170

171-
**We choose to allow variables to be named as keywords, and we use context to
171+
**We choose to allow variables to be named as keywords, and we use context to
172172
disambiguate.**
173173

174174
### Whitespace
@@ -186,7 +186,7 @@ Xpress will interpret this as the expression `2 * x`.
186186
Gurobi document this behavior, saying that they require whitespace around all
187187
tokens, but they're an outlier.
188188

189-
**We choose to allow juxtaposted tokens without whitespace.**
189+
**We choose to allow juxtaposed tokens without whitespace.**
190190

191191
### Identifiers
192192

docs/src/tutorials/latency.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ with the reasons for latency in Julia and how to fix them.
2424

2525
* Read the blogposts on julialang.org on [precompilation](https://julialang.org/blog/2021/01/precompile_tutorial/)
2626
and [SnoopCompile](https://julialang.org/blog/2021/01/snoopi_deep/)
27-
* Read the [SnoopCompile](https://timholy.github.io/SnoopCompile.jl/stable/)
27+
* Read the [SnoopCompile](https://juliadebug.github.io/SnoopCompile.jl/stable/)
2828
documentation.
2929
* Watch Tim Holy's [talk at JuliaCon 2021](https://www.youtube.com/watch?v=rVBgrWYKLHY)
3030
* Watch the [package development workshop at JuliaCon 2021](https://www.youtube.com/watch?v=wXRMwJdEjX4)

docs/styles/config/vocabularies/JuMP/accept.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ errored
1515
flamegraph
1616
getters
1717
[Jj]ulia
18-
juxtaposted
1918
linkcheck
2019
nonlinearly
2120
nonzeros
@@ -59,4 +58,4 @@ QSopt
5958
preprint
6059
Lubin
6160
Nemirovski
62-
Xpress
61+
Xpress

0 commit comments

Comments
 (0)