diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ce6d01231..89c1d8cd22 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -291,7 +291,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * Fix a rare logger error for failed doctests. (#1698), (#1699) -* Fix an error occuring with `DocTestFilters = nothing` in `@meta` blocks. (#1696) +* Fix an error occurring with `DocTestFilters = nothing` in `@meta` blocks. (#1696) ## Version v0.27.6 - 2021-09-07 @@ -489,7 +489,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * Type aliases of `Union`s (e.g. `const MyAlias = Union{Foo,Bar}`) are now correctly listed as "Type" in docstrings. (#1466), (#1474) -* HTMLWriter no longers prints a warning when encountering `mailto:` URLs in links. (#1472) +* HTMLWriter no longer prints a warning when encountering `mailto:` URLs in links. (#1472) ## Version v0.25.3 - 2020-10-28 @@ -573,7 +573,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * The LaTeX/PDF backend now supports the `platform="none"` keyword, which outputs only the TeX source files, rather than a compiled PDF. (#1338), (#1339) -* Linkcheck no longer prints a warning when enountering a `302 Found` temporary redirect. (#1344), (#1345) +* Linkcheck no longer prints a warning when encountering a `302 Found` temporary redirect. (#1344), (#1345) ### Fixed @@ -1092,4 +1092,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * The at-blocks that execute code can now handle `include` statements. (#793), (#794) -* At-docs blocks no longer give an error when containing empty lines. (#823), (#824) \ No newline at end of file +* At-docs blocks no longer give an error when containing empty lines. (#823), (#824) diff --git a/assets/html/scss/bulma/utilities/mixins.sass b/assets/html/scss/bulma/utilities/mixins.sass index 10cbae3047..a59d4bff6b 100644 --- a/assets/html/scss/bulma/utilities/mixins.sass +++ b/assets/html/scss/bulma/utilities/mixins.sass @@ -54,7 +54,7 @@ top: calc(50% + 4px) &:hover background-color: bulmaRgba(black, 0.05) - // Modifers + // Modifiers &.is-active span &:nth-child(1) diff --git a/assets/html/themeswap.js b/assets/html/themeswap.js index c58e993e3e..6c90db7d6e 100644 --- a/assets/html/themeswap.js +++ b/assets/html/themeswap.js @@ -1,6 +1,6 @@ // Small function to quickly swap out themes. Gets put into the tag.. function set_theme_from_local_storage() { - // Intialize the theme to null, which means default + // Initialize the theme to null, which means default var theme = null; // If the browser supports the localstorage and is not disabled then try to get the // documenter theme diff --git a/docs/src/man/syntax.md b/docs/src/man/syntax.md index 5608449069..fcfb6b4db3 100644 --- a/docs/src/man/syntax.md +++ b/docs/src/man/syntax.md @@ -723,7 +723,7 @@ using the `@raw` block. ````markdown ```@raw html - + ``` @@ -732,7 +732,7 @@ using the `@raw` block. It will show up as follows, with code having been copied over verbatim to the HTML file. ```@raw html - + (SVG) diff --git a/docs/src/showcase.md b/docs/src/showcase.md index b3bed97c15..1dde8cec7b 100644 --- a/docs/src/showcase.md +++ b/docs/src/showcase.md @@ -393,7 +393,7 @@ println("Hello World") ### Color output Output from [`@repl` block](@ref)s and [`@example` block](@ref)s support colored output, -tranforming ANSI color codes to HTML. +transforming ANSI color codes to HTML. !!! compat "Julia 1.6" Color output requires Julia 1.6 or higher. diff --git a/src/CrossReferences.jl b/src/CrossReferences.jl index 2139b4e597..7678c1b352 100644 --- a/src/CrossReferences.jl +++ b/src/CrossReferences.jl @@ -69,7 +69,7 @@ function xref(node::MarkdownAST.Node, meta, page, doc) basicxref(node, meta, page, doc) return false end - # If `slug` is a string referncing a known header, we'll go for that + # If `slug` is a string referencing a known header, we'll go for that if Anchors.exists(doc.internal.headers, slug) namedxref(node, slug, meta, page, doc) return false diff --git a/src/Expanders.jl b/src/Expanders.jl index aae41ee0c9..b7bedaa329 100644 --- a/src/Expanders.jl +++ b/src/Expanders.jl @@ -701,7 +701,7 @@ function Selectors.runner(::Type{ExampleBlocks}, node, page, doc) # Evaluate the code block. We redirect stdout/stderr to `buffer`. result, buffer = nothing, IOBuffer() if !continued # run the code - # check if there is any code wating + # check if there is any code waiting if haskey(page.globals.meta, :ContinuedCode) && haskey(page.globals.meta[:ContinuedCode], sym) code = page.globals.meta[:ContinuedCode][sym] * '\n' * x.code delete!(page.globals.meta[:ContinuedCode], sym) diff --git a/src/documents.jl b/src/documents.jl index 2d5bd7bffe..36dad6d18d 100644 --- a/src/documents.jl +++ b/src/documents.jl @@ -216,7 +216,7 @@ function Base.show(io::IO, n::NavNode) end """ -Constructs a list of the ancestors of the `navnode` (inclding the `navnode` itself), +Constructs a list of the ancestors of the `navnode` (including the `navnode` itself), ordered so that the root of the navigation tree is the first and `navnode` itself is the last item. """ diff --git a/src/html/HTMLWriter.jl b/src/html/HTMLWriter.jl index 679ead36e2..98dab30c65 100644 --- a/src/html/HTMLWriter.jl +++ b/src/html/HTMLWriter.jl @@ -61,7 +61,7 @@ import ANSIColoredPrinters export HTML -"Data attribute for the script inserting a wraning for outdated docs." +"Data attribute for the script inserting a warning for outdated docs." const OUTDATED_VERSION_ATTR = "data-outdated-warner" "List of Documenter native themes." diff --git a/test/doctests/doctests.jl b/test/doctests/doctests.jl index a1b448a219..a7b03594e5 100644 --- a/test/doctests/doctests.jl +++ b/test/doctests/doctests.jl @@ -203,7 +203,7 @@ rfile(filename) = joinpath(@__DIR__, "stdouts", filename) end end - # Tests for doctest = :only. The outout should reflect that the docs themselves do not + # Tests for doctest = :only. The output should reflect that the docs themselves do not # get built. run_makedocs(["working.md"]; modules=[FooWorking], doctest = :only) do result, success, backtrace, output @test success diff --git a/test/errors/src/index.md b/test/errors/src/index.md index 71fb398ae0..6ae6637458 100644 --- a/test/errors/src/index.md +++ b/test/errors/src/index.md @@ -8,15 +8,15 @@ parse error ``` ```@meta -CurrentModule = NonExistantModule +CurrentModule = NonExistentModule ``` ```@autodocs -Modules = [NonExistantModule] +Modules = [NonExistentModule] ``` ```@eval -NonExistantModule +NonExistentModule ``` ```@docs diff --git a/test/examples/references/latex_showcase.tex b/test/examples/references/latex_showcase.tex index 363873bd95..d1865f0505 100644 --- a/test/examples/references/latex_showcase.tex +++ b/test/examples/references/latex_showcase.tex @@ -907,7 +907,7 @@ \subsection{Color output} \label{17347250707405175741}{} -Output from \hyperlinkref{16839343392674353047}{\texttt{@repl} block}s and \hyperlinkref{12317204655950454097}{\texttt{@example} block}s support colored output, tranforming ANSI color codes to HTML. +Output from \hyperlinkref{16839343392674353047}{\texttt{@repl} block}s and \hyperlinkref{12317204655950454097}{\texttt{@example} block}s support colored output, transforming ANSI color codes to HTML. diff --git a/test/examples/src.latex_showcase/showcase.md b/test/examples/src.latex_showcase/showcase.md index 1a6c2c489d..d03ad69c13 100644 --- a/test/examples/src.latex_showcase/showcase.md +++ b/test/examples/src.latex_showcase/showcase.md @@ -394,7 +394,7 @@ x + 1 ### Color output Output from [`@repl` block](@ref)s and [`@example` block](@ref)s support colored output, -tranforming ANSI color codes to HTML. +transforming ANSI color codes to HTML. #### Colored `@repl` block output diff --git a/test/examples/src/man/tutorial.md b/test/examples/src/man/tutorial.md index 3822955af1..31d2d1bf49 100644 --- a/test/examples/src/man/tutorial.md +++ b/test/examples/src/man/tutorial.md @@ -280,7 +280,7 @@ _Note: we can't define the `show` method in the `@example` block due to the worl counter in Julia 0.6 (Documenter's `makedocs` is not aware of any of the new method definitions happening in `eval`s)._ -We can also show SVG images with interactivity via the `text/html` MIME to display output that combines HTML, JS and CSS. Assume the following type and method live in the `InlineHTML` modeul +We can also show SVG images with interactivity via the `text/html` MIME to display output that combines HTML, JS and CSS. Assume the following type and method live in the `InlineHTML` module ```julia struct HTML @@ -402,7 +402,7 @@ end ![Julia circles](julia.svg) -Dowload [`data.csv`](data.csv). +Download [`data.csv`](data.csv). ## [Links](../index.md) in headers