From 9a1130c86f337880b645e839b6007babaf7b8173 Mon Sep 17 00:00:00 2001 From: Jonathan Carroll Date: Fri, 7 Jul 2017 01:20:22 +0930 Subject: [PATCH] [Minor] typo in extending-ggplot2 vignette (#2193) build -> built --- vignettes/extending-ggplot2.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vignettes/extending-ggplot2.Rmd b/vignettes/extending-ggplot2.Rmd index 3b071dd62..e91e55c2e 100644 --- a/vignettes/extending-ggplot2.Rmd +++ b/vignettes/extending-ggplot2.Rmd @@ -552,7 +552,7 @@ Complete and incomplete themes behave somewhat differently when added to a ggplo ## Creating a new facetting -One of the more daunting exercises in ggplot2 extensions is to create a new facetting system. The reason for this is that when creating new facettings you take on the responsibility of how (almost) everything is drawn on the screen, and many do not have experience with directly using [gtable](https://cran.r-project.org/package=gtable) and [grid](https://cran.r-project.org/package=grid) upon which the ggplot2 rendering is build. If you decide to venture into facetting extensions, it is highly recommended to gain proficiency with the above-mentioned packages. +One of the more daunting exercises in ggplot2 extensions is to create a new facetting system. The reason for this is that when creating new facettings you take on the responsibility of how (almost) everything is drawn on the screen, and many do not have experience with directly using [gtable](https://cran.r-project.org/package=gtable) and [grid](https://cran.r-project.org/package=grid) upon which the ggplot2 rendering is built. If you decide to venture into facetting extensions, it is highly recommended to gain proficiency with the above-mentioned packages. The `Facet` class in ggplot2 is very powerful as it takes on responsibility of a wide range of tasks. The main tasks of a `Facet` object are: