Skip to content

Commit 7963a0f

Browse files
authored
Merge pull request #1 from JuliaAI/dummy
Fix typos
2 parents fb6a521 + 13c3a1e commit 7963a0f

File tree

6 files changed

+7
-26
lines changed

6 files changed

+7
-26
lines changed

.github/workflows/ci.yml

-19
Original file line numberDiff line numberDiff line change
@@ -49,22 +49,3 @@ jobs:
4949
token: ${{ secrets.CODECOV_TOKEN }}
5050
fail_ci_if_error: false
5151
verbose: true
52-
docs:
53-
name: Documentation
54-
runs-on: ubuntu-latest
55-
steps:
56-
- uses: actions/checkout@v2
57-
- uses: julia-actions/setup-julia@v1
58-
with:
59-
version: '1'
60-
- uses: julia-actions/julia-buildpkg@v1
61-
- uses: julia-actions/julia-docdeploy@v1
62-
env:
63-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
64-
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
65-
- run: |
66-
julia --project=docs -e '
67-
using Documenter: DocMeta, doctest
68-
using LearnTestAPI
69-
DocMeta.setdocmeta!(LearnTestAPI, :DocTestSetup, :(using LearnTestAPI); recursive=true)
70-
doctest(LearnTestAPI)'

Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ UnPack = "3a884ed6-31ef-47d7-9d2a-63182c4928ed"
2525
Distributions = "0.25"
2626
InteractiveUtils = "<0.0.1, 1"
2727
IsURL = "0.2.0"
28-
LearnAPI = "0.1.0"
28+
LearnAPI = "0.2.0"
2929
LinearAlgebra = "<0.0.1, 1"
3030
MLUtils = "0.4"
3131
Random = "<0.0.1, 1"

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ Tool for testing implementations of the
55
machine learning and statistics
66

77
[![Build Status](https://github.com/JuliaAI/LearnTestAPI.jl/workflows/CI/badge.svg)](https://github.com/JuliaAI/LearnTestAPI.jl/actions)
8-
[![codecov](https://codecov.io/gh/JuliaAI/LearnTestAPI.jl/graph/badge.svg?token=9IWT9KYINZ)]
8+
[![codecov](https://codecov.io/gh/JuliaAI/LearnTestAPI.jl/graph/badge.svg?token=gCIQfDtzMt)](https://codecov.io/gh/JuliaAI/LearnTestAPI.jl)
99

10-
See [LearnAPI.jl](https://juliaai.github.io/LearnAPI.jl/stable/) for documentation.
10+
See [LearnAPI.jl](https://juliaai.github.io/LearnAPI.jl/stable/) for documentation.

src/logging.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ const FUNCTIONS3 = """
4343
"""
4444
const FUNCTIONS4 = """
4545
46-
Testing that `LearnAPI.functions(learner)` exludes `:(LearnAPI.features)`, as
46+
Testing that `LearnAPI.functions(learner)` excludes `:(LearnAPI.features)`, as
4747
`LearnAPI.is_static(learner)` is `true`.
4848
4949
"""
@@ -410,7 +410,7 @@ const FIT_SCITYPE = """
410410
"""
411411
const TARGET_OBSERVATION_SCITYPE = """
412412
413-
Checking that `LearnAPI.target(learner, observatoins)` satisifies the constraints
413+
Checking that `LearnAPI.target(learner, observatoins)` satisfies the constraints
414414
articulated by `LearnAPI.target_observation_scitype(learner)`.
415415
416416
"""

src/testapi.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ contracts against one or more data sets.
88
using LearnTestAPI
99
1010
X = (
11-
feautre1 = [1, 2, 3],
11+
feature1 = [1, 2, 3],
1212
feature2 = ["a", "b", "c"],
1313
feature3 = [10.0, 20.0, 30.0],
1414
)

src/tools.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ end
137137
138138
*Private method.*
139139
140-
Replaces the expresion `lhs == rhs` with `isnear(lhs, rhs; kwargs...)` for testing a weaker
140+
Replaces the expression `lhs == rhs` with `isnear(lhs, rhs; kwargs...)` for testing a weaker
141141
form of equality. Here `kwargs...` are keyword arguments accepted in `isapprox(lhs, rhs;
142142
kwargs...)`, which is called if `lhs == rhs` fails.
143143

0 commit comments

Comments
 (0)