From d31a57cf5f9f501a2f04ccb2f34e4cf985dd6c3f Mon Sep 17 00:00:00 2001 From: ReeceGoding <67124261+ReeceGoding@users.noreply.github.com> Date: Thu, 15 Apr 2021 22:43:22 +0100 Subject: [PATCH] Removed typo in callbacks.R (#6863) Changed "TURE" to "TRUE". --- R-package/R/callbacks.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R-package/R/callbacks.R b/R-package/R/callbacks.R index ac3c576c8..7d161111d 100644 --- a/R-package/R/callbacks.R +++ b/R-package/R/callbacks.R @@ -533,7 +533,7 @@ cb.cv.predict <- function(save_models = FALSE) { #' Callback closure for collecting the model coefficients history of a gblinear booster #' during its training. #' -#' @param sparse when set to FALSE/TURE, a dense/sparse matrix is used to store the result. +#' @param sparse when set to FALSE/TRUE, a dense/sparse matrix is used to store the result. #' Sparse format is useful when one expects only a subset of coefficients to be non-zero, #' when using the "thrifty" feature selector with fairly small number of top features #' selected per iteration.