Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Sean Lovett <[email protected]>
  • Loading branch information
BSnelling and sdl1 authored Mar 2, 2021
1 parent 2af04da commit 9252321
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/traits.jl
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ output_type(T::Type) = throw(MethodError(output_type, (T,))) # to prevent recur
"""
PredictInputTrait
The `PredictInputTrait` specifies if the model supports point or distribution injections to predict,
The `PredictInputTrait` specifies if the model supports point or distribution inputs to `predict`,
denoted by [`PointPredictInput`](@ref) or [`PointOrDistributionPredictInput`](@ref).
"""
abstract type PredictInputTrait end
Expand All @@ -77,7 +77,7 @@ abstract type PointPredictInput <: PredictInputTrait end
"""
PointOrDistributionPredictInput <: PredictInputTrait
Specifies that the [`Model`](@ref) accepts real-values or a distribution over the input
Specifies that the [`Model`](@ref) accepts real-values or a joint distribution over the input
variables to `predict`.
"""
abstract type PointOrDistributionPredictInput <: PredictInputTrait end
Expand Down

0 comments on commit 9252321

Please sign in to comment.