From dd45b4f385a6cc0f4b92444bf0e5329a32b67058 Mon Sep 17 00:00:00 2001 From: Satvik Mishra Date: Sat, 19 Sep 2026 12:49:29 +0000 Subject: [PATCH] docs: say "an intercept" for step_lencode_mixed() formula The documented lmer formula includes an intercept (`~ 1 + ...`), so the Details text should not say "no intercept". Fixes #277. --- R/lencode_mixed.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/lencode_mixed.R b/R/lencode_mixed.R index 7490fb2c..8020ad26 100644 --- a/R/lencode_mixed.R +++ b/R/lencode_mixed.R @@ -45,7 +45,7 @@ #' For novel levels, a slightly timmed average of the coefficients is returned. #' #' A hierarchical generalized linear model is fit using [lme4::lmer()] or -#' [lme4::glmer()], depending on the nature of the outcome, and no intercept via +#' [lme4::glmer()], depending on the nature of the outcome, and an intercept via #' #' ``` #' lmer(outcome ~ 1 + (1 | predictor), data = data, ...)