From d2603d6c4524ab884aeaabaf2265f8d123b13d28 Mon Sep 17 00:00:00 2001 From: Petr Vana Date: Thu, 26 May 2022 11:34:04 +0200 Subject: [PATCH] Update docs --- src/intervals/functions.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/intervals/functions.jl b/src/intervals/functions.jl index 5fb2f03ef..11b82571e 100644 --- a/src/intervals/functions.jl +++ b/src/intervals/functions.jl @@ -375,7 +375,7 @@ function nthroot(a::Interval{T}, n::Integer) where T end """ -Calculate `x mod y` where `x` is an interval and `y` is a positive divisor. +Calculate `x::Interval mod y::Real`, limited by `y != 0`. """ function mod(x::Interval, y::Real) @assert y != zero(y) """mod(x::Interval, y::Real)