Skip to content

Commit f30844d

Browse files
committed
update the doc of test_unbound_args to align with test_ambiguities
1 parent 35b2dc8 commit f30844d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/unbound_args.jl

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ of the method.
99
# Keyword Arguments
1010
- `broken::Bool = false`: If true, it uses `@test_broken` instead of
1111
`@test` and shortens the error message.
12-
- `exclude::AbstractVector{Tuple{Function, DataType...}} = []`: A list of
13-
functions and their signatures to exclude. The signatures are given as
14-
tuples, where the first element is the function and the rest are the types of
15-
the arguments. For example, to ignore `foo(x::Int, y::Float64)`,
12+
- `exclude::AbstractVector{Tuple{Base.Callable, DataType...}} = []`: A vector of
13+
signatures of functions or callable to exclude from testing. A signature is given
14+
as a tuple, where the first element is the callable and the rest are
15+
the types of the arguments. For example, to exclude `foo(x::Int, y::Float64)`,
1616
pass `(foo, Int, Float64)`.
1717
"""
1818
function test_unbound_args(m::Module; broken::Bool = false, exclude = [])

0 commit comments

Comments
 (0)