Skip to content

Commit 5ab8f37

Browse files
authored
Merge pull request #26 from JuliaAI/docstring-fix
Fix a docstring
2 parents fa15988 + b8589be commit 5ab8f37

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

.github/codecov.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
coverage:
2+
status:
3+
project:
4+
default:
5+
threshold: 0.5%

.github/workflows/ci.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fail-fast: false
1818
matrix:
1919
version:
20-
- '1.3'
20+
- '1.6'
2121
- '1' # automatically expands to the latest stable 1.x release of Julia.
2222
os:
2323
- ubuntu-latest
@@ -44,6 +44,7 @@ jobs:
4444
env:
4545
JULIA_NUM_THREADS: 2
4646
- uses: julia-actions/julia-processcoverage@v1
47-
- uses: codecov/codecov-action@v1
47+
- uses: codecov/codecov-action@v3
4848
with:
49-
file: lcov.info
49+
files: lcov.info
50+

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ MLJModelInterface = "1.4"
1818
ScientificTypes = "2.2.2, 3"
1919
ScientificTypesBase = "2.2.0, 3"
2020
TextAnalysis = "0.7.3"
21-
julia = "1.3"
21+
julia = "1.6"
2222

2323
[extras]
2424
MLJBase = "a7f614a8-145f-11e9-1d2a-a57a1082229d"

src/bm25_transformer.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ The transformer converts a collection of documents, tokenized or pre-parsed as b
119119
words/ngrams, to a matrix of [Okapi BM25 document-word
120120
statistics](https://en.wikipedia.org/wiki/Okapi_BM25). The BM25 scoring function uses both
121121
term frequency (TF) and inverse document frequency (IDF, defined below), as in
122-
[`TfidfTransformer`](ref), but additionally adjusts for the probability that a user will
122+
[`TfidfTransformer`](@ref), but additionally adjusts for the probability that a user will
123123
consider a search result relevant based, on the terms in the search query and those in
124124
each document.
125125

0 commit comments

Comments
 (0)