From 9e6ca982f8cd381cf4601cceb64f5ad323737476 Mon Sep 17 00:00:00 2001 From: simonpcouch Date: Thu, 23 May 2024 10:08:32 -0500 Subject: [PATCH] fix an erroneous `container` -> `tailor` replace --- R/workflow.R | 5 +++-- man/workflow.Rd | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/R/workflow.R b/R/workflow.R index 5c7557f6..14d93258 100644 --- a/R/workflow.R +++ b/R/workflow.R @@ -1,10 +1,11 @@ #' Create a workflow #' #' @description -#' A `workflow` is a tailor object that aggregates information required to +#' A `workflow` is a container object that aggregates information required to #' fit and predict from a model. This information might be a recipe used in #' preprocessing, specified through [add_recipe()], or the model specification -#' to fit, specified through [add_model()]. +#' to fit, specified through [add_model()], or a tailor used in postprocessing, +#' specificied through [add_tailor()]. #' #' The `preprocessor` and `spec` arguments allow you to add components to a #' workflow quickly, without having to go through the `add_*()` functions, such diff --git a/man/workflow.Rd b/man/workflow.Rd index eed4d3ae..e4bcb6c3 100644 --- a/man/workflow.Rd +++ b/man/workflow.Rd @@ -25,10 +25,11 @@ post-processing steps to add to the workflow. Passed on to A new \code{workflow} object. } \description{ -A \code{workflow} is a tailor object that aggregates information required to +A \code{workflow} is a container object that aggregates information required to fit and predict from a model. This information might be a recipe used in preprocessing, specified through \code{\link[=add_recipe]{add_recipe()}}, or the model specification -to fit, specified through \code{\link[=add_model]{add_model()}}. +to fit, specified through \code{\link[=add_model]{add_model()}}, or a tailor used in postprocessing, +specificied through \code{\link[=add_tailor]{add_tailor()}}. The \code{preprocessor} and \code{spec} arguments allow you to add components to a workflow quickly, without having to go through the \verb{add_*()} functions, such