Skip to content

Commit

Permalink
Fixed a typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
tmshn committed Jul 29, 2015
1 parent d2513a0 commit 308a4f4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion NEWS
Expand Up @@ -2330,4 +2330,4 @@ ggplot2 0.5
* id/grouping completely rewritten so that automatically grouped when any of
the aesthetics is a categorical variable.This behaviour is defined in the
Grammar of Graphics, and makes things like qplot(wt, data=mtcars,
geom="density", colour=factor(cyl)) work nicely
geom="density", colour=factor(cyl)) work nicely
2 changes: 1 addition & 1 deletion R/stat-bin.r
Expand Up @@ -19,7 +19,7 @@
stat_bin <- function (mapping = NULL, data = NULL, geom = "bar",
position = "stack", width = 0.9, drop = FALSE, right = FALSE,
binwidth = NULL, bins = NULL, origin = NULL, breaks = NULL,
show.legend = NA, inherit.aes = TRUE, ......)
show.legend = NA, inherit.aes = TRUE, ...)
{
layer(
data = data,
Expand Down
2 changes: 1 addition & 1 deletion man/geom_histogram.Rd
Expand Up @@ -16,7 +16,7 @@ geom_freqpoly(mapping = NULL, data = NULL, stat = "bin",
stat_bin(mapping = NULL, data = NULL, geom = "bar", position = "stack",
width = 0.9, drop = FALSE, right = FALSE, binwidth = NULL,
bins = NULL, origin = NULL, breaks = NULL, show.legend = NA,
inherit.aes = TRUE, ......)
inherit.aes = TRUE, ...)
}
\arguments{
\item{mapping}{The aesthetic mapping, usually constructed with
Expand Down

0 comments on commit 308a4f4

Please sign in to comment.