@@ -62,7 +62,7 @@ the at-docs block.
62
62
### [ ` @docs; canonical=false ` block] (@id noncanonical-block)
63
63
64
64
You can pass the ` canonical ` keyword argument as ` false ` to ` @docs ` to indicate
65
- that the ` @docs ` should be be considered as non-canonical like so:
65
+ that the ` @docs ` should be considered as non-canonical like so:
66
66
67
67
```` markdown
68
68
```@docs; canonical=false
@@ -119,7 +119,7 @@ Pages = ["a.jl", "b.jl"]
119
119
````
120
120
121
121
In the above example docstrings from module ` Foo ` found in source files whose file path ends
122
- with ` a.jl ` and ` b.jl ` are included. The page order provided by ` Pages ` is also used to sort the
122
+ with ` a.jl ` and ` b.jl ` are included. The page order provided by ` Pages ` is also used to sort the
123
123
docstrings. Note that page matching is done using the end of the provided strings and so
124
124
` a.jl ` will be matched by * any* source file whose file path ends with ` a.jl ` , i.e. ` src/a.jl ` ,
125
125
` src/foo/a.jl ` or ` src/bar_a.jl ` .
@@ -292,7 +292,7 @@ for more details.
292
292
## ` @meta ` block
293
293
294
294
This block type is used to define metadata key/value pairs that can be used elsewhere in the
295
- page. Currently recognised keys:
295
+ page. Currently recognized keys:
296
296
- ` CurrentModule ` : module where Documenter evaluates, for example, [ ` @docs ` -block] ( @ref )
297
297
and [ ` @ref ` -link] (@ref at-ref-at-id-links)s.
298
298
- ` DocTestSetup ` : code to be evaluated before a doctest, see the [ Setup and Teardown Code] ( @ref )
@@ -620,7 +620,7 @@ second block. A block with `continued = true` does not have any output.
620
620
621
621
## ` @repl ` block
622
622
623
- These are similar to ` @example ` blocks, but add a ` julia> ` prompt before each toplevel
623
+ These are similar to ` @example ` blocks, but add a ` julia> ` prompt before each toplevel
624
624
expression and do not fail upon encountering an error.
625
625
The ` # hide ` syntax may be used in ` @repl ` blocks in the same way
626
626
as in ` @example ` blocks. Furthermore, a semicolon ` ; ` at the end of a line will
0 commit comments