Issue
Four lines in roxygen comment blocks use # instead of #', which means they are treated as regular R comments and silently dropped from the rendered documentation.
Affected lines
R/smote_impl.R — line 23, inside the @details block of smote():
#' All columns in the data are sampled and returned by [recipes::juice()]
# All columns used in this function must be numeric with no missing data.
#' ^ missing apostrophe
R/smotenc_impl.R — line 23, same pattern inside smotenc():
# Columns can be numeric and categorical with no missing data.
R/bsmote_impl.R — line 25, inside the @details block of bsmote():
# Points will be generated around points labeled "danger".
R/bsmote.R — line 36, inside the @details block of step_bsmote():
# Points will be generated around points labeled "danger".
Fix
Add the missing ' to each line so it becomes part of the roxygen block, then re-document.
Issue
Four lines in roxygen comment blocks use
#instead of#', which means they are treated as regular R comments and silently dropped from the rendered documentation.Affected lines
R/smote_impl.R— line 23, inside the@detailsblock ofsmote():R/smotenc_impl.R— line 23, same pattern insidesmotenc():# Columns can be numeric and categorical with no missing data.R/bsmote_impl.R— line 25, inside the@detailsblock ofbsmote():# Points will be generated around points labeled "danger".R/bsmote.R— line 36, inside the@detailsblock ofstep_bsmote():# Points will be generated around points labeled "danger".Fix
Add the missing
'to each line so it becomes part of the roxygen block, then re-document.