Skip to content

Commit 9d35cb9

Browse files
committed
typos
1 parent c85f3dc commit 9d35cb9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/src/anatomy_of_an_implementation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -425,7 +425,7 @@ LearnAPI.fit(learner::Ridge, data; kwargs...) =
425425
### The `obs` contract
426426

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

src/obs.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ observations)`](@ref), [`LearnAPI.target(learner, observations)`](@ref) (supervi
8989
learners), and/or [`LearnAPI.weights(learner, observations)`](@ref) (if weights are
9090
supported), for each kind output `observations` of `obs(learner, data)`. Moreover, the
9191
outputs of these methods, applied to `observations`, must also implement the interface
92-
specfied by [`LearnAPI.data_interface(learner)`](@ref).
92+
specified by [`LearnAPI.data_interface(learner)`](@ref).
9393
9494
## Sample implementation
9595

0 commit comments

Comments
 (0)