diff --git a/R/influxdb_authentication_and_authorization.R b/R/influxdb_authentication_and_authorization.R index caf6ba6..f4dafd6 100644 --- a/R/influxdb_authentication_and_authorization.R +++ b/R/influxdb_authentication_and_authorization.R @@ -4,8 +4,8 @@ #' and `influx_query` (show_users and show grants). #' * `create_user()`: creates a new user #' * `drop_user()`: drops an existing user -#' * `grant_privileges()`: grant priviliges to an existing users -#' * `revoke_privileges()`: revoke priviliges to an existing users +#' * `grant_privileges()`: grant privileges to an existing users +#' * `revoke_privileges()`: revoke privileges to an existing users #' * `show_users()`: show all users #' * `show_grants()`: show grants of an user #' diff --git a/R/influxdb_helper.R b/R/influxdb_helper.R index c347361..06de4d9 100644 --- a/R/influxdb_helper.R +++ b/R/influxdb_helper.R @@ -41,7 +41,7 @@ httr_POST <- function(con, query = NULL, body = NULL, endpoint) { } -#' method to check the server communicatin results +#' method to check the server communication results #' function is not exported #' @param x httr::POST response #' @keywords internal diff --git a/R/influxdb_select.R b/R/influxdb_select.R index ee20bb0..8562c22 100644 --- a/R/influxdb_select.R +++ b/R/influxdb_select.R @@ -13,7 +13,7 @@ #' @param offset Offsets the returned points by the value provided. #' @param order_desc logical. Change sort order to descending. #' @param return_xts logical. Sets the return type. If set to TRUE, a list of xts objects -#' is returned, FALSE gives list of tibbbles. +#' is returned, FALSE gives list of tibbles. #' #' @return A list of xts or tibbles. #' @export diff --git a/R/influxdb_write.R b/R/influxdb_write.R index 22878e6..82442d7 100644 --- a/R/influxdb_write.R +++ b/R/influxdb_write.R @@ -19,7 +19,7 @@ #' @param time_col A character scalar naming the time index column. #' @param tag_cols A character vector naming tag columns. #' @param measurement_col A character scalar naming the measurement column (data.frame -#' has data to write to mulitple measurements). Overrides `measurement` argument. +#' has data to write to multiple measurements). Overrides `measurement` argument. #' @param rp Sets the target retention policy for the write. If not present the #' default retention policy is used. #' @param precision Sets the precision of the supplied Unix time values diff --git a/man/check_srv_comm.Rd b/man/check_srv_comm.Rd index 7d06aed..7764ffa 100644 --- a/man/check_srv_comm.Rd +++ b/man/check_srv_comm.Rd @@ -2,7 +2,7 @@ % Please edit documentation in R/influxdb_helper.R \name{check_srv_comm} \alias{check_srv_comm} -\title{method to check the server communicatin results +\title{method to check the server communication results function is not exported} \usage{ check_srv_comm(x) @@ -11,7 +11,7 @@ check_srv_comm(x) \item{x}{httr::POST response} } \description{ -method to check the server communicatin results +method to check the server communication results function is not exported } \keyword{internal} diff --git a/man/create_user.Rd b/man/create_user.Rd index f334378..ed9f656 100644 --- a/man/create_user.Rd +++ b/man/create_user.Rd @@ -43,8 +43,8 @@ and \code{influx_query} (show_users and show grants). \itemize{ \item \code{create_user()}: creates a new user \item \code{drop_user()}: drops an existing user -\item \code{grant_privileges()}: grant priviliges to an existing users -\item \code{revoke_privileges()}: revoke priviliges to an existing users +\item \code{grant_privileges()}: grant privileges to an existing users +\item \code{revoke_privileges()}: revoke privileges to an existing users \item \code{show_users()}: show all users \item \code{show_grants()}: show grants of an user } diff --git a/man/influx_select.Rd b/man/influx_select.Rd index d171cfe..bf0738b 100644 --- a/man/influx_select.Rd +++ b/man/influx_select.Rd @@ -33,7 +33,7 @@ grouping by given values, but also for grouping by given time buckets.} \item{order_desc}{logical. Change sort order to descending.} \item{return_xts}{logical. Sets the return type. If set to TRUE, a list of xts objects -is returned, FALSE gives list of tibbbles.} +is returned, FALSE gives list of tibbles.} \item{simplifyList}{logical. If only one series is returned, the result can be flatten to directly get either a tibble or an xts object (instead of a list) diff --git a/man/influx_write.Rd b/man/influx_write.Rd index fd94718..8f12a34 100644 --- a/man/influx_write.Rd +++ b/man/influx_write.Rd @@ -54,7 +54,7 @@ fail.} \item{tag_cols}{A character vector naming tag columns.} \item{measurement_col}{A character scalar naming the measurement column (data.frame -has data to write to mulitple measurements). Overrides \code{measurement} argument.} +has data to write to multiple measurements). Overrides \code{measurement} argument.} } \value{ A list of server responses.