Skip to content

Commit eecbd1f

Browse files
dpsanderslbenet
authored andcommitted
Fix set minus in docs (#157)
* Fix Unicode in set_operations docs * Fix another setminus in docs
1 parent 4657b06 commit eecbd1f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/intervals/set_operations.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ union(a::Interval, b::Interval) = hull(a, b)
8787
"""
8888
setdiff(x::Interval, y::Interval)
8989
90-
Calculate the set difference `x \ y`, i.e. the set of values
90+
Calculate the set difference `x y`, i.e. the set of values
9191
that are inside the interval `x` but not inside `y`.
9292
9393
Returns an array of intervals.

src/multidim/setdiff.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ end
3636
"""
3737
setdiff(A::IntervalBox{N,T}, B::IntervalBox{N,T})
3838
39-
Returns a vector of `IntervalBox`es that are in the set difference `A \ B`,
39+
Returns a vector of `IntervalBox`es that are in the set difference `A B`,
4040
i.e. the set of `x` that are in `A` but not in `B`.
4141
4242
Algorithm: Start from the total overlap (in all directions);

0 commit comments

Comments
 (0)