Skip to content

Commit

Permalink
docs: correcting typos
Browse files Browse the repository at this point in the history
  • Loading branch information
jkennedyie committed Aug 25, 2024
1 parent e988900 commit d3bac72
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion R/ig_to_igr.R
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#' @export
#'
#' @examples
#' # A matrix of three Irish Grid coordinates
#' # A matrix of Irish Grid coordinates
#' m <- matrix(c(0, 412300, 0, 98700, 456000, 0), byrow = TRUE, ncol = 2)
#'
#' m
Expand Down
2 changes: 1 addition & 1 deletion R/igr_is_valid.R
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#' # Check validity of Irish Grid coordinates
#' igr_is_valid(v)
#'
#' # Check validity of Irish Grid coordinates, dissallowing tetrad form
#' # Check validity of Irish Grid coordinates, disallowing tetrad form
#' igr_is_valid(v, tetrad = FALSE)
igr_is_valid <- function(x, tetrad = TRUE) {
if (is.null(x)) {
Expand Down
2 changes: 1 addition & 1 deletion R/st_igr_as_sf.R
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
#' @export
#'
#' @examples
#' # A data.frame containing two Irish grid references
#' # A data.frame containing Irish grid references
#' x <- data.frame(igr = c("A00", "N8000", "D12T"))
#'
#' # Convert a data.frame of Irish grid references to an sf object in the
Expand Down

0 comments on commit d3bac72

Please sign in to comment.