Skip to content

Commit 06ba657

Browse files
authored
add missing backquotes for __init__ docs (#37805)
1 parent 81fbeac commit 06ba657

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

base/docs/basedocs.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ kw"module"
106106
`__init__()` function in your module would executes immediately *after* the module is loaded at
107107
runtime for the first time (i.e., it is only called once and only after all statements in the
108108
module have been executed). Because it is called *after* fully importing the module, `__init__`
109-
functions of submodules will be executed *first*. Two typical uses of __init__ are calling
109+
functions of submodules will be executed *first*. Two typical uses of `__init__` are calling
110110
runtime initialization functions of external C libraries and initializing global constants
111111
that involve pointers returned by external libraries.
112112
See the [manual section about modules](@ref modules) for more details.

0 commit comments

Comments
 (0)