No docstring found for module

Hi,
Let’s suppose I create a local package called ABC.
Once I have installed the package and loaded it with using, I do:

help?> ABC

I get:

No docstring found for module ABC

How do I create a docstring?

I have tried to use @doc from : Documentation · The Julia Language

But I still get the same message.

Thank you

julia> """Hello world

       This is my module
       """
       module Foo
       x = 1
       end
Main.Foo

help?> Foo
search: Foo floor pointer_from_objref OverflowError RoundFromZero unsafe_copyto! functionloc StackOverflowError @functionloc OutOfMemoryError

  Hello world

  This is my module

It seems like a lot of people don’t do this unfortunately.

1 Like