Skip to content

Commit

Permalink
fix docs typos for release
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelgfalk committed Oct 5, 2023
1 parent 4d1167c commit c6318db
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 13 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ Version: 0.1.9
Authors@R:
person("Michael", "Falk", , "[email protected]", role = c("aut", "cre", "cph"),
comment = c(ORCID = "0000-0001-9261-8390"))
Description: Access 'Wikipedia' through the official 'MediaWiki' APIs
Description: Access 'Wikipedia' through the several 'MediaWiki' APIs
(<https://www.mediawiki.org/wiki/API>), as well as through the
'XTools' API (<https://www.mediawiki.org/wiki/XTools/API>). Ensure
your API calls are correct, and recieve results in tidy tibbles.
your API calls are correct, and receive results in tidy tibbles.
License: MIT + file LICENSE
URL: https://wikihistories.github.io/wikkitidy/
BugReports: https://github.com/wikihistories/wikkitidy/issues
Expand Down
21 changes: 11 additions & 10 deletions R/utils-tidy-eval.R
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
#' Tidy eval helpers
#'
#' @description
#' This page lists the tidy eval tools reexported in this package from
#' rlang. To learn about using tidy eval in scripts and packages at a
#' high level, see the [dplyr programming
#' vignette](https://dplyr.tidyverse.org/articles/programming.html)
#' and the [ggplot2 in packages
#' @description This page lists the tidy eval tools reexported in this package
#' from rlang. To learn about using tidy eval in scripts and packages at a high
#' level, see the [dplyr programming
#' vignette](https://dplyr.tidyverse.org/articles/programming.html) and the
#' [ggplot2 in packages
#' vignette](https://ggplot2.tidyverse.org/articles/ggplot2-in-packages.html).
#' The [Metaprogramming
#' section](https://adv-r.hadley.nz/metaprogramming.html) of [Advanced
#' R](https://adv-r.hadley.nz) may also be useful for a deeper dive.
#' The [Metaprogramming section](https://adv-r.hadley.nz/metaprogramming.html)
#' of [Advanced R](https://adv-r.hadley.nz) may also be useful for a deeper
#' dive.
#'
#' * The tidy eval operators `{{`, `!!`, and `!!!` are syntactic
#' constructs which are specially interpreted by tidy eval functions.
#' constructs which are specially interpreted by tidy eval functions.
#' You will mostly need `{{`, as `!!` and `!!!` are more advanced
#' operators which you should not have to use in simple cases.
#'
Expand Down Expand Up @@ -103,5 +102,7 @@
#' @keywords internal
#' @importFrom rlang enquo enquos .data := as_name as_label
#' @aliases enquo enquos .data := as_name as_label
#' @value Consult the original rlang documentation for the return types of these
#' re-exported functions.
#' @export enquo enquos .data := as_name as_label
NULL
5 changes: 4 additions & 1 deletion cran-comments.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,7 @@
## URL check

* urlchecker reports the following as a 404: https://wikimedia.org/api/rest_v1/. I can assure you that this URL exists!
* tidyeval.Rd has no \value field, consistently with the standard template returned by usethis::use_tidy_eval(). See e.g. tidyeval.Rd in the ggplot2 package.

## 'MediaWiki' APIs

* MediaWiki supports a number of APIs for Wikipedia, which share a single portal for their documentation. Hence the reference to 'several APIs' in DESCRIPTION

0 comments on commit c6318db

Please sign in to comment.