Skip to content

Commit aac173e

Browse files
committed
Merge pull request #1438 from PeteHaitch/patch-2
ggplot2 version should be 2.0.0 not 1.1.0 in vignette?
2 parents 100eac9 + 71c8bd5 commit aac173e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vignettes/extending-ggplot2.Rmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ knitr::opts_chunk$set(collapse = TRUE, comment = "#>")
1414
library(ggplot2)
1515
```
1616

17-
This vignette documents the official extension mechanism provided in ggplot2 1.1.0. This vignette is a high-level adjunct to the low-level details found in `?Stat`, `?Geom` and `?theme`. You'll learn how to extend ggplot2 by creating a new stat, geom, or theme.
17+
This vignette documents the official extension mechanism provided in ggplot2 2.0.0. This vignette is a high-level adjunct to the low-level details found in `?Stat`, `?Geom` and `?theme`. You'll learn how to extend ggplot2 by creating a new stat, geom, or theme.
1818

19-
As you read this document, you'll see many things that will make you scratch your head and wonder why on earth is it designed this way? Mostly it's historical accident - I wasn't a terribly good R programmer when I started writing ggplot2 and I made a lot of questionable decisions. We cleaned up as many of those issues as possible in the 1.1.0 release, but some fixes simply weren't worth the effort.
19+
As you read this document, you'll see many things that will make you scratch your head and wonder why on earth is it designed this way? Mostly it's historical accident - I wasn't a terribly good R programmer when I started writing ggplot2 and I made a lot of questionable decisions. We cleaned up as many of those issues as possible in the 2.0.0 release, but some fixes simply weren't worth the effort.
2020

2121
## ggproto
2222

0 commit comments

Comments
 (0)