Skip to content

Commit 334199a

Browse files
authored
docs: correct some spelling errors (#2712)
1 parent fadb28c commit 334199a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/src/man/syntax.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ the at-docs block.
6262
### [`@docs; canonical=false` block](@id noncanonical-block)
6363

6464
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:
6666

6767
````markdown
6868
```@docs; canonical=false
@@ -119,7 +119,7 @@ Pages = ["a.jl", "b.jl"]
119119
````
120120

121121
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
123123
docstrings. Note that page matching is done using the end of the provided strings and so
124124
`a.jl` will be matched by *any* source file whose file path ends with `a.jl`, i.e. `src/a.jl`,
125125
`src/foo/a.jl` or `src/bar_a.jl`.
@@ -292,7 +292,7 @@ for more details.
292292
## `@meta` block
293293

294294
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:
296296
- `CurrentModule`: module where Documenter evaluates, for example, [`@docs`-block](@ref)
297297
and [`@ref`-link](@ref at-ref-at-id-links)s.
298298
- `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.
620620

621621
## `@repl` block
622622

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
624624
expression and do not fail upon encountering an error.
625625
The `# hide` syntax may be used in `@repl` blocks in the same way
626626
as in `@example` blocks. Furthermore, a semicolon `;` at the end of a line will

0 commit comments

Comments
 (0)