From 80d37298c5b08960dead3504d40572fef71d009f Mon Sep 17 00:00:00 2001 From: oyvindbso Date: Wed, 16 Jun 2021 10:48:01 +0200 Subject: [PATCH] Typo: Changed damains to domains The description said: "a vector of damains" and I changed it to "a vector of domains" --- R/suffix.R | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/R/suffix.R b/R/suffix.R index 6066c73..1dcbce9 100644 --- a/R/suffix.R +++ b/R/suffix.R @@ -101,7 +101,7 @@ suffix_refresh <- function(){ #' a vector of domain names, and produces a data.frame containing the #' suffix that each domain uses, and the remaining fragment. #' -#' @param domains a vector of damains, from \code{\link{domain}} +#' @param domains a vector of domains, from \code{\link{domain}} #' or \code{\link{url_parse}}. Alternately, full URLs can be provided #' and will then be run through \code{\link{domain}} internally. #' @@ -264,4 +264,4 @@ tld_extract <- function(domains, tlds = NULL){ #'@export host_extract <- function(domains){ return(data.frame(domain = domains, host = host_extract_(domains), stringsAsFactors = FALSE)) -} \ No newline at end of file +}