From 6652ebd5252501ee1fbd8690f3f03eabd65733f6 Mon Sep 17 00:00:00 2001 From: "Anthony D. Blaom" Date: Thu, 28 May 2026 17:34:31 +1200 Subject: [PATCH] fix formatting error --- src/predict_transform.jl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/predict_transform.jl b/src/predict_transform.jl index b33ac25..4503973 100644 --- a/src/predict_transform.jl +++ b/src/predict_transform.jl @@ -7,7 +7,7 @@ end DOC_MUTATION(op) = """ - If [`LearnAPI.kind_of(learner)`](@ref) is `LearnAPI.Static()`(@ref), then `$op` may + If [`LearnAPI.kind_of(learner)`](@ref) is [`LearnAPI.Static()`](@ref), then `$op` may mutate it's first argument (to record byproducts of the computation not naturally part of the return value) but not in a way that alters the result of a subsequent call to `predict`, `transform` or `inverse_transform`. See more at [`fit`](@ref). @@ -83,7 +83,7 @@ See also [`fit`](@ref), [`transform`](@ref), [`inverse_transform`](@ref). # Extended help -In the special case If [`LearnAPI.kind_of(learner)`](@ref) is `LearnAPI.Static()`(@ref), +In the special case If [`LearnAPI.kind_of(learner)`](@ref) is [`LearnAPI.Static()`](@ref), it is possible that `predict(model, ...)` will mutate `model`, but not in a way that affects subsequent `predict` calls. @@ -151,7 +151,7 @@ or, in one step (where supported): W = transform(learner, X) # `fit` implied ``` -In the special case If [`LearnAPI.kind_of(learner)`](@ref) is `LearnAPI.Static()`(@ref), +In the special case If [`LearnAPI.kind_of(learner)`](@ref) is [`LearnAPI.Static()`](@ref), it is possible that `transform(model, ...)` will mutate `model`, but not in a way that affects subsequent `transform` calls.