Skip to content

Commit

Permalink
add missing backquotes for __init__ docs (#37805)
Browse files Browse the repository at this point in the history
  • Loading branch information
aviatesk authored Sep 30, 2020
1 parent 81fbeac commit 06ba657
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base/docs/basedocs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ kw"module"
`__init__()` function in your module would executes immediately *after* the module is loaded at
runtime for the first time (i.e., it is only called once and only after all statements in the
module have been executed). Because it is called *after* fully importing the module, `__init__`
functions of submodules will be executed *first*. Two typical uses of __init__ are calling
functions of submodules will be executed *first*. Two typical uses of `__init__` are calling
runtime initialization functions of external C libraries and initializing global constants
that involve pointers returned by external libraries.
See the [manual section about modules](@ref modules) for more details.
Expand Down

0 comments on commit 06ba657

Please sign in to comment.