From c9fbe55008e98fc9dfc4ad771986fd31b7205f0f Mon Sep 17 00:00:00 2001 From: Johannes Koch <43963181+johanneskoch94@users.noreply.github.com> Date: Wed, 1 Nov 2023 11:20:46 +0100 Subject: [PATCH] Fix typos (#348) --- README.Rmd | 4 ++-- README.md | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.Rmd b/README.Rmd index 453ddfec..86845388 100644 --- a/README.Rmd +++ b/README.Rmd @@ -40,7 +40,7 @@ pak::pak("r-lib/scales") ### Breaks and labels -The most common use of the scales package is to customise to control the appearance of axis and legend labels. Use a `break_` function to control how breaks are generated from the limits, and a `label_` function to control how breaks are turned in to labels. +The most common use of the scales package is to control the appearance of axis and legend labels. Use a `break_` function to control how breaks are generated from the limits, and a `label_` function to control how breaks are turned in to labels. ```{r labels} library(ggplot2) @@ -77,7 +77,7 @@ economics %>% ) ``` -Generally, I don't recommend running `library(scales)` because when you type (e.g.) `scales::label_` autocomplete will provide you with a list of labelling functions to job your memory. +Generally, I don't recommend running `library(scales)` because when you type (e.g.) `scales::label_` autocomplete will provide you with a list of labelling functions to jog your memory. ### Advanced features diff --git a/README.md b/README.md index ba0e3504..5a2d861c 100644 --- a/README.md +++ b/README.md @@ -36,10 +36,10 @@ pak::pak("r-lib/scales") ### Breaks and labels -The most common use of the scales package is to customise to control the -appearance of axis and legend labels. Use a `break_` function to control -how breaks are generated from the limits, and a `label_` function to -control how breaks are turned in to labels. +The most common use of the scales package is to control the appearance +of axis and legend labels. Use a `break_` function to control how breaks +are generated from the limits, and a `label_` function to control how +breaks are turned in to labels. ``` r library(ggplot2) @@ -85,7 +85,7 @@ economics %>% Generally, I don’t recommend running `library(scales)` because when you type (e.g.) `scales::label_` autocomplete will provide you with a list -of labelling functions to job your memory. +of labelling functions to jog your memory. ### Advanced features