Skip to content

Commit cc073b1

Browse files
lbm364dlgithub-actions[bot]
authored andcommitted
Fix typos (#1738)
(cherry picked from commit 6cdab90)
1 parent 50da9e9 commit cc073b1

File tree

13 files changed

+17
-17
lines changed

13 files changed

+17
-17
lines changed

docs/authoring/language.qmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ title: "Document Language"
66

77
Document language plays a role in Pandoc's processing of most formats, and controls hyphenation in PDF output when using LaTeX (through [`babel`](https://ctan.org/pkg/babel) and [`polyglossia`](https://ctan.org/pkg/polyglossia)) or ConTeXt.
88

9-
Additonally, Quarto, Pandoc, and LaTeX will sometimes generate textual output that requires localization. For example, "Figure" or "List of Figures" for cross references, callout captions like "Note" or "Warning", or the "Code" caption for folded code chunks.
9+
Additionally, Quarto, Pandoc, and LaTeX will sometimes generate textual output that requires localization. For example, "Figure" or "List of Figures" for cross references, callout captions like "Note" or "Warning", or the "Code" caption for folded code chunks.
1010

1111
## `lang` Option
1212

docs/authoring/title-blocks.qmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ title-block-banner: true
3838

3939
will render a title block like:
4040

41-
![](images/document-title-block-banner.png){.border fig-alt="Title block with title and description against a blue background up top, and below a section with author, affilitation, and date published."}
41+
![](images/document-title-block-banner.png){.border fig-alt="Title block with title and description against a blue background up top, and below a section with author, affiliation, and date published."}
4242

4343
### Custom Backgrounds
4444

@@ -52,7 +52,7 @@ title-block-banner: images/banner.jpeg
5252

5353
which would render a banner title block like:
5454

55-
![](images/document-title-block-banner-custom.png){.border fig-alt="Title block with title and description against an image background up top, and below a section with author, affilitation, and date published."}
55+
![](images/document-title-block-banner-custom.png){.border fig-alt="Title block with title and description against an image background up top, and below a section with author, affiliation, and date published."}
5656

5757
When you provide an explicit background color or image, Quarto assumes that the color of the background will contrast with the body background color and automatically uses the body background color as the text color over the banner.
5858

docs/computations/julia.qmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -490,7 +490,7 @@ engine via integrations with the
490490
[RCall](https://github.com/JuliaInterop/RCall.jl) and
491491
[PythonCall](https://github.com/JuliaPy/PythonCall.jl) packages respectively.
492492
Using this feature requires the notebook author to explicitly `import` those
493-
packages into their notebooks in a `{{julia}}` cell afterwhich they can use
493+
packages into their notebooks in a `{{julia}}` cell after which they can use
494494
`{{r}}` and `{{python}}` cells.
495495

496496
````markdown

docs/dashboards/_examples/gapminder-notebook.ipynb

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

docs/download/changelog/1.1/_changelog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@
152152
- Development version cleans old vendor directory on success (https://github.com/quarto-dev/quarto-cli/pull/1863#issuecomment-1215452392)
153153
- properly support YAML scalar syntax (#1838)
154154
- Add support for Giscus lazy loading (use `loading: lazy` #1357)
155-
- Properly handle duplicated affilations in author metadata (#1286)
155+
- Properly handle duplicated affiliations in author metadata (#1286)
156156
- Display image path when an error occurs reading PNG metadata
157157
- `quarto run *.ts` preserves stdout and stderr (#1954)
158158
- Lua filters: quarto.utils.dump does not loop on circular structures (#1958)

docs/download/changelog/1.3/_changelog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@
198198
- Don't discard the first chapter header when a chapter title is declared using YAML.
199199
- Support for rendering to Asciidoc
200200
- Support for rendering to LaTeX
201-
- Properly support localized appendex name in book website navigation ([#4578](https://github.com/quarto-dev/quarto-cli/issues/4578))
201+
- Properly support localized appendix name in book website navigation ([#4578](https://github.com/quarto-dev/quarto-cli/issues/4578))
202202
- Don't emit duplicate bibliography heading when LaTeX/PDF books are rendering using `natbib` or `biblatex` ([#2770](https://github.com/quarto-dev/quarto-cli/issues/2770))
203203

204204
## Preview

docs/extensions/lua.qmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ You can keep these calls in your filter since they won't produce output unless `
151151

152152
## Native Format {#native-format}
153153

154-
A great tool for understanding the behavior of a Lua filter or shortcode in more depth is to target the `native` format (as opposed to `html`, `pdf`, etc.). The `native` format will show you the raw contents of the Pandoc AST. For example, here's a simple markdown document alongside it's `native` output:
154+
A great tool for understanding the behavior of a Lua filter or shortcode in more depth is to target the `native` format (as opposed to `html`, `pdf`, etc.). The `native` format will show you the raw contents of the Pandoc AST. For example, here's a simple markdown document alongside its `native` output:
155155

156156
::: {layout-ncol="2"}
157157
<div>

docs/get-started/computations/positron.qmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ You can see examples of other options that control code appearance in the HTML f
288288
Figures produced by code cells are automatically included in the rendered output.
289289
Code cell options provide additional control over how figures are displayed.
290290

291-
For example, update the code cell for the scatter plot by adding a caption with `fig-cap`, and improve accessability by adding [alternative text](https://medium.com/nightingale/writing-alt-text-for-data-visualization-2a218ef43f81) with `fig-alt`:
291+
For example, update the code cell for the scatter plot by adding a caption with `fig-cap`, and improve accessibility by adding [alternative text](https://medium.com/nightingale/writing-alt-text-for-data-visualization-2a218ef43f81) with `fig-alt`:
292292

293293
```yml
294294
#| fig-cap: City and highway mileage for 38 popular models of cars.

docs/interactive/ojs/shiny.qmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ Here are some examples that demonstrate various ways to use OJS with Shiny:
8686
|----------------------------------------------------------------|------------------------------|--------------------------------------------------------------------------------------------------------------------|
8787
| [K-Means](https://jjallaire.shinyapps.io/kmeans-shiny-ojs/) | [Code](https://git.io/J0kPK) | Simple example of binding OJS inputs to Shiny inputs and shiny reactives to OJS plots. |
8888
| [Binning](https://jjallaire.shinyapps.io/binning-shiny-ojs/) | [Code](https://git.io/J0kPu) | Demonstrates fast binning of a medium sized dataset (32mb) on the server. |
89-
| [Data Binding](https://jjallaire.shinyapps.io/data-shiny-ojs/) | [Code](https://git.io/J0kPl) | Demonstrates importing a notebook from <https://observablehq.com> and binding it's data field to a Shiny reactive. |
89+
| [Data Binding](https://jjallaire.shinyapps.io/data-shiny-ojs/) | [Code](https://git.io/J0kPl) | Demonstrates importing a notebook from <https://observablehq.com> and binding its data field to a Shiny reactive. |
9090

9191
## Bindings
9292

docs/projects/scripts.qmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Available script interpreters for `quarto run` include:
2727

2828
Using TypeScript or Lua enables you to create scripts with no additional installation requirements. On the other hand, if your project is already using Python or R then scripts in those languages might be more convenient.
2929

30-
If you are using TypeScript, please be sure to consult the section below on [Deno Scripts](#deno-scripts) for additonal details on the Deno standard library and importing external scripts.
30+
If you are using TypeScript, please be sure to consult the section below on [Deno Scripts](#deno-scripts) for additional details on the Deno standard library and importing external scripts.
3131

3232
## Pre and Post Render
3333

@@ -170,4 +170,4 @@ const { readLines } = await multiImport(
170170
"stdlib/io", // Quarto 1.6 syntax
171171
"https://deno.land/std/io/mod.ts", // Quarto 1.5 syntax
172172
);
173-
```
173+
```

0 commit comments

Comments
 (0)