Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
  • Loading branch information
ablaom committed Nov 2, 2024
1 parent c85f3dc commit 9d35cb9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/src/anatomy_of_an_implementation.md
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ LearnAPI.fit(learner::Ridge, data; kwargs...) =
### The `obs` contract

Providing `fit` signatures matching the output of [`obs`](@ref), is the first part of the
`obs` contract. Since `obs(learner, data)` should evidentally support all `data` that
`obs` contract. Since `obs(learner, data)` should evidently support all `data` that
`fit(learner, data)` supports, we must be able to apply `obs(learner, _)` to it's own
output (`observations` below). This leads to the additional "no-op" declaration

Expand Down
2 changes: 1 addition & 1 deletion src/obs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ observations)`](@ref), [`LearnAPI.target(learner, observations)`](@ref) (supervi
learners), and/or [`LearnAPI.weights(learner, observations)`](@ref) (if weights are
supported), for each kind output `observations` of `obs(learner, data)`. Moreover, the
outputs of these methods, applied to `observations`, must also implement the interface
specfied by [`LearnAPI.data_interface(learner)`](@ref).
specified by [`LearnAPI.data_interface(learner)`](@ref).
## Sample implementation
Expand Down

0 comments on commit 9d35cb9

Please sign in to comment.