Skip to content

Commit

Permalink
fixed typos
Browse files Browse the repository at this point in the history
  • Loading branch information
paulhendricks committed Sep 8, 2015
1 parent 524f370 commit 0d68b58
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion R/anonymize.R
Expand Up @@ -11,7 +11,7 @@
#' @param .seed an integer to seed the random number generator.
#' @param .chars set of characters to salt with.
#' @param .n_chars an integer; number of characters to salt with.
#' @param ... additional arguments to be based to \code{hash}.
#' @param ... additional arguments to be passed to \code{hash}.
#' @return An anonymized version of the vector.
#' @examples
#' set.seed(1)
Expand Down
2 changes: 1 addition & 1 deletion R/hash.R
Expand Up @@ -7,7 +7,7 @@
#' @param .x a vector.
#' @param .algo the name of the algorithm.
#' @param .seed an integer to seed the random number generator.
#' @param ... additional arguments to be based to \code{\link[digest]{digest}}.
#' @param ... additional arguments to be passed to \code{\link[digest]{digest}}.
#' @return A hashed version of the vector.
#' @examples
#' # All algorithms available to digest::digest are available here
Expand Down
2 changes: 1 addition & 1 deletion man/anonymize.Rd
Expand Up @@ -18,7 +18,7 @@ anonymize(.x, .algo = "sha256", .seed = 0, .chars = letters,

\item{.n_chars}{an integer; number of characters to salt with.}

\item{...}{additional arguments to be based to \code{hash}.}
\item{...}{additional arguments to be passed to \code{hash}.}
}
\value{
An anonymized version of the vector.
Expand Down
2 changes: 1 addition & 1 deletion man/hash.Rd
Expand Up @@ -13,7 +13,7 @@ hash(.x, .algo = "sha256", .seed = 0, ...)

\item{.seed}{an integer to seed the random number generator.}

\item{...}{additional arguments to be based to \code{\link[digest]{digest}}.}
\item{...}{additional arguments to be passed to \code{\link[digest]{digest}}.}
}
\value{
A hashed version of the vector.
Expand Down

0 comments on commit 0d68b58

Please sign in to comment.