Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix some typos #1701

Merged
merged 2 commits into from
Jan 12, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Stick with the file name bake-sale.xlsx instead of using `bake_sale…
….xlsx`
kleintom committed Jan 11, 2025
commit 80f3e05553173cdfe5e174d05162ed1834dbfda8
6 changes: 3 additions & 3 deletions spreadsheets.qmd
Original file line number Diff line number Diff line change
@@ -347,7 +347,7 @@ You can write data back to disk as an Excel file using the `write_xlsx()` functi
```{r}
#| eval: false

write_xlsx(bake_sale, path = "data/bake_sale.xlsx")
write_xlsx(bake_sale, path = "data/bake-sale.xlsx")
```

@fig-bake-sale-excel shows what the data looks like in Excel.
@@ -359,7 +359,7 @@ These can be turned off by setting `col_names` and `format_headers` arguments to
#| echo: false
#| fig-width: 5
#| fig-cap: |
#| Spreadsheet called bake_sale.xlsx in Excel.
#| Spreadsheet called bake-sale.xlsx in Excel.
#| fig-alt: |
#| Bake sale data frame created earlier in Excel.

@@ -371,7 +371,7 @@ This makes Excel files unreliable for caching interim results as well.
For alternatives, see @sec-writing-to-a-file.

```{r}
read_excel("data/bake_sale.xlsx")
read_excel("data/bake-sale.xlsx")
```

### Formatted output