From bbf864bcba1ae625c3b20c62048db283b6b7ca1a Mon Sep 17 00:00:00 2001 From: Hadley Wickham Date: Tue, 26 Nov 2024 07:18:25 -0600 Subject: [PATCH] Fix typo --- README.Rmd | 4 +++- README.md | 6 +++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/README.Rmd b/README.Rmd index efdf7e5..aec0bb6 100644 --- a/README.Rmd +++ b/README.Rmd @@ -27,7 +27,9 @@ The most interesting thing about ggplot1 is that it was originally designed arou ggpoint(ggplot(mtcars, list(x = mpg, y = wt))) ``` -I correct recognised that this was hard for people to read and write, but solved this problem in ggplot2 by overloading addition. In hindsight, this problem is solved generally by the pipe! +I correctly recognised that this was hard for people to read and write, +but solved the problem in ggplot2 by overloading addition. In +hindsight, this problem is solved more generally by the pipe! ggplot had 7 CRAN releases starting with 0.2.2 in April 2006, and finishing with 0.4.2 in October 2008. diff --git a/README.md b/README.md index 309773e..0cccac4 100644 --- a/README.md +++ b/README.md @@ -21,9 +21,9 @@ this: ggpoint(ggplot(mtcars, list(x = mpg, y = wt))) ``` -I correct recognised that this was hard for people to read and write, -but solved this problem in ggplot2 by overloading addition. In -hindsight, this problem is solved generally by the pipe! +I correctly recognised that this was hard for people to read and write, +but solved the problem in ggplot2 by overloading addition. In hindsight, +this problem is solved more generally by the pipe! ggplot had 7 CRAN releases starting with 0.2.2 in April 2006, and finishing with 0.4.2 in October 2008.