Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
David Muhr committed Dec 14, 2017
1 parent 59767e1 commit 3c14236
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: stopwords
Type: Package
Title: Stopword lists in R
Title: Multilingual Stopword Lists
Version: 0.9.0
Authors@R: c(person("Kenneth", "Benoit", email = "[email protected]", role = "aut"),
person("David", "Muhr", email = "[email protected]", role = c("aut", "cre")),
Expand Down
8 changes: 4 additions & 4 deletions R/stopwords.R
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#' Collection of stopwords in multiple langauges
#' Collection of stopwords in multiple languages
#'
#' This function returns stopwrods colated for Stopwords ISO library
#' This function returns stopwords collated for Stopwords ISO library
#' (\url{https://github.com/stopwords-iso/stopwords-iso}).
#' @param language specify language of stopwords by ISO 639-1 code
#' @param source specify a stopwords source. To list the currently
Expand All @@ -9,7 +9,7 @@
#' @details
#' The language codes for each stopword list use the two-letter ISO
#' code from \url{https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes}.
#' For backwards compatibility, the full english names of the stopwords
#' For backwards compatibility, the full English names of the stopwords
#' from the \pkg{quanteda} package may also be used, although these are
#' deprecated.
#' @export
Expand All @@ -22,7 +22,7 @@ stopwords <- function(language = "en", source = "snowball") {

error <- createError(
default = paste0("Language ", "\"", language, "\" not available in source \"", source, "\"."),
note = "See `stopwords_getlanguages` for more information on supported langauges."
note = "See `stopwords_getlanguages` for more information on supported languages."
)

# for quanteda compability
Expand Down
6 changes: 3 additions & 3 deletions man/stopwords.Rd

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

0 comments on commit 3c14236

Please sign in to comment.