Skip to content

Commit fcc0e5e

Browse files
fix typo
1 parent 5f4b119 commit fcc0e5e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/domains.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ import DomainSets: Interval, Ball, infimum, supremum
66
# type piracy on Interval for downstream compatibility to be reverted once upgrade is complete
77
function Base.getproperty(domain::Interval, sym::Symbol)
88
if sym === :lower
9-
@warn "domain.lower is deprecated, used infimum(domain) instead"
9+
@warn "domain.lower is deprecated, use infimum(domain) instead"
1010
return infimum(domain)
1111
elseif sym === :upper
12-
@warn "domain.upper is deprecated, used supremum(domain) instead"
12+
@warn "domain.upper is deprecated, use supremum(domain) instead"
1313
return supremum(domain)
1414
else
1515
return getfield(domain, sym)

0 commit comments

Comments
 (0)