Skip to content

Commit

Permalink
fix Undocumented code objects
Browse files Browse the repository at this point in the history
R CMD check is now passing 0 errors 0 warnings 0 notes
  • Loading branch information
slowkow committed Nov 6, 2022
1 parent 362a923 commit 2e6162e
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 9 deletions.
1 change: 1 addition & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
^vignettes/.*\.md$
^how_to_build.txt$
movies/
_snaps/
^_pkgdown\.yml$
^docs$
^pkgdown$
Expand Down
3 changes: 1 addition & 2 deletions R/geom-label-repel.R
Original file line number Diff line number Diff line change
Expand Up @@ -76,12 +76,11 @@ geom_label_repel <- function(
}

#' GeomLabelRepel
#' @rdname ggrepel-ggproto
#' @rdname ggrepel
#' @format NULL
#' @usage NULL
#' @seealso \link[ggplot2]{GeomLabel} from the ggplot2 package.
#' @keywords internal
#' @noRd
#' @export
GeomLabelRepel <- ggproto(
"GeomLabelRepel", Geom,
Expand Down
3 changes: 1 addition & 2 deletions R/geom-text-repel.R
Original file line number Diff line number Diff line change
Expand Up @@ -221,12 +221,11 @@ geom_text_repel <- function(
}

#' GeomTextRepel
#' @rdname ggrepel-ggproto
#' @rdname ggrepel
#' @format NULL
#' @usage NULL
#' @seealso \link[ggplot2]{GeomText} from the ggplot2 package.
#' @keywords internal
#' @noRd
#' @export
GeomTextRepel <- ggproto("GeomTextRepel", Geom,
required_aes = c("x", "y", "label"),
Expand Down
3 changes: 2 additions & 1 deletion R/position-nudge-repel.R
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,10 @@ position_nudge_repel <- function(x = 0, y = 0) {
)
}

#' @rdname ggrepel-ggproto
#' @rdname ggrepel
#' @format NULL
#' @usage NULL
#' @keywords internal
#' @export
PositionNudgeRepel <- ggproto("PositionNudgeRepel", Position,
x = 0,
Expand Down
16 changes: 12 additions & 4 deletions man/ggrepel.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 2e6162e

Please sign in to comment.