Doc string for overloaded Base method?

If I overload e.g. Base.getindex() for my custom type, how do I include a doc string that gets automatically displayed by Documenter.jl for documenting my package? Documenter.jl seems to use the “original” doc string included in Base and ignore the doc string in my code.

OK, it’s actually covered in the manual for Documenter.jl. To only show the method for a specific type, I can use something like

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

in the doc markdown file