Skip to content

Commit eb76baa

Browse files
fix some typos
1 parent 8a57637 commit eb76baa

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
Package: RVerbalExpressions
2-
Title: Create regular expressions easily
2+
Title: Create Regular Expressions Easily
33
Version: 0.0.0.9000
44
Authors@R: c(
55
person("Tyler", "Littlefield", email = "[email protected]", role = c("aut", "cre"), comment=c(ORCID="0000-0002-6020-1125")),
66
person("Dmytro", "Perepolkin", email = "[email protected]", role = c("ctb"), comment=c(ORCID="0000-0001-8558-6183")))
77
Description: The goal of RVerbalExpressions is to make it easier to build regular
88
expressions using grammar and functionality inspired by
9-
[VerbalExpressions](https://github.com/VerbalExpressions). Usage of the
9+
<https://github.com/VerbalExpressions>. Usage of the
1010
`%>%` is encouraged to build expressions in a chain-like fashion.
1111
License: MIT + file LICENSE
1212
Encoding: UTF-8

R/lookarounds.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#' Negative lookaround functions
22
#'
33
#' @description This function facilitates matching by providing negative assurances for surrounding symbols/groups of symbols.
4-
#' It allows for building expressions that are dependent on context of occurence.
4+
#' It allows for building expressions that are dependent on context of occurrence.
55
#'
66
#' @param .data Expression to append, typically pulled from the pipe \code{ \%>\% }
77
#' @param value Exact expression to match
@@ -28,7 +28,7 @@ rx_avoid_suffix <- function(.data = NULL, value) {
2828
#' Positive lookaround functions
2929
#'
3030
#' @description This function facilitates matching by providing assurances for surrounding symbols/groups of symbols.
31-
#' It allows for building expressions that are dependent on context of occurence.
31+
#' It allows for building expressions that are dependent on context of occurrence.
3232
#'
3333
#' @param .data Expression to append, typically pulled from the pipe \code{ \%>\% }
3434
#' @param value Exact expression to match

R/utils.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ NULL
1515
#' @description Takes a string and escapes all characters considered special by
1616
#' the regex engine. This is used internally when you add a string to the
1717
#' \code{value} parameter in most of the available functions. It is exported
18-
#' and useable externally for users that want to escape all special characters
18+
#' and usable externally for users that want to escape all special characters
1919
#' in their desired match. The following special characters are escaped
2020
#' \code{. | * ? + ( ) { } ^ $ \\ : = [ ]}
2121
#'

man/rx_avoid.Rd

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/rx_seek.Rd

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/sanitize.Rd

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)