Skip to content

Commit 48f36dc

Browse files
committed
update
1 parent 6f58fcb commit 48f36dc

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

docs/src/submodules/Bridges/implementation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ arguments: the type of the bridge, the input model as a string, and the output
6666
model as a string.
6767

6868
Here is an example:
69-
```jldoctest; filter="[0-9.]+s"
69+
```jldoctest; filter=r"[0-9.]+s"
7070
julia> MOI.Bridges.runtests(
7171
MOI.Bridges.Constraint.GreaterToLessBridge,
7272
"""
@@ -100,7 +100,7 @@ There are a number of other useful keyword arguments.
100100

101101
Here is an example:
102102

103-
```jldoctest; filter="[0-9.]+s"
103+
```jldoctest; filter=r"[0-9.]+s"
104104
julia> MOI.Bridges.runtests(
105105
MOI.Bridges.Constraint.GreaterToLessBridge,
106106
"""

src/Bridges/Bridges.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ and [`MOI.ConstraintPrimalStart`](@ref) to throw [`MOI.GetAttributeNotAllowed`](
263263
264264
## Example
265265
266-
```jldoctest; setup=:(import MathOptInterface as MOI), filter="[0-9.]+s"
266+
```jldoctest; setup=:(import MathOptInterface as MOI), filter=r"[0-9.]+s"
267267
julia> MOI.Bridges.runtests(
268268
MOI.Bridges.Constraint.ZeroOneBridge,
269269
model -> MOI.add_constrained_variable(model, MOI.ZeroOne()),
@@ -410,7 +410,7 @@ Run a series of tests that check the correctness of `Bridge`.
410410
411411
## Example
412412
413-
```jldoctest; setup=:(import MathOptInterface as MOI), filter="[0-9.]+s"
413+
```jldoctest; setup=:(import MathOptInterface as MOI), filter=r"[0-9.]+s"
414414
julia> MOI.Bridges.runtests(
415415
MOI.Bridges.Constraint.ZeroOneBridge,
416416
\"\"\"

0 commit comments

Comments
 (0)