How to document this

You can do

```@docs
MyType
MyType(::Integer)
```

if you have a docstring for both the type and the functor.

But do note that you can run into trouble if you have a constructor and a functor method with the same signature – due to a docsystem bug, one of them will get overwritten by the other.

1 Like