You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is just a quirk in Julia's display system where names are not displayed fully qualified if they are available in Main. Closing as a duplicate of #944.
Recently in DataFrames.jl we had the following issue with running doctests JuliaData/DataFrames.jl#2705.
The problem was that the Documenter.jl documentation uses what was actually
used
in make.jl to format display not what isused
in the doctests.So e.g. the following code:
produces the following array signature:
instead of correct:
The issue is resolved by adding
using CategoricalArrays
also to make.jl.I could not find any documentation that for producing display what is used in make.jl is respected (and not what you use in the actual doctest).
Maybe it is documented then sorry for raising this issue and it can be closed. However, I could not find this information.
The text was updated successfully, but these errors were encountered: