Skip to content

Commit ec5d6b9

Browse files
committed
Update docstring
1 parent 3eb2650 commit ec5d6b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/SciTypes.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ sciconvert(::Type{Categorical}, x::Integer) = x
105105
"""
106106
coerce(S::Type{<:SciType}, itr)
107107
108-
Convert the scientific type of elements of the iterable `itr` to `S`.
108+
Convert the scientific type of elements of the iterable `itr` to `S`, ignoring missing values.
109109
"""
110110
coerce(::Type{S}, itr) where {S<:SciType} = map(x -> ismissing(x) ? missing : sciconvert(S, x), itr)
111111

0 commit comments

Comments
 (0)