Skip to content

Commit f0c68d5

Browse files
committed
fix typos
1 parent d47cabe commit f0c68d5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/src/anatomy_of_an_implementation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ LearnAPI.target(::Ridge, observations::RidgeFitObs) = observations.y
401401
### The `obs` contract
402402

403403
Providing `fit` signatures matching the output of `obs`, is the first part of the `obs`
404-
contract. The second part is this: *The outupt of `obs` must implement the*
404+
contract. The second part is this: *The output of `obs` must implement the*
405405
[MLUtils.jl](https://juliaml.github.io/MLUtils.jl/dev/) `getobs/numobs` *interface for
406406
accessing individual observations*. It usually suffices to overload `Base.getindex` and
407407
`Base.length` (which are the `getobs/numobs` fallbacks):

docs/src/obs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ performance advantages over naive workflows in some cases (e.g., cross-validatio
88

99
```julia
1010
obs(algorithm, data) # can be passed to `fit` instead of `data`
11-
obs(model, data) # can be passed to `predict` or `tranform` instead of `data`
11+
obs(model, data) # can be passed to `predict` or `transform` instead of `data`
1212
```
1313

1414
## Typical workflows

src/obs.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ that case.
6969
7070
## Sample implementation
7171
72-
Refer to the "Anatomy of an Implemetation" section of the LearnAPI
72+
Refer to the "Anatomy of an Implementation" section of the LearnAPI
7373
[manual](https://juliaai.github.io/LearnAPI.jl/dev/).
7474
7575

0 commit comments

Comments
 (0)