Skip to content

Commit a135165

Browse files
committed
Fix typo and remove redundant parens
1 parent 2a023f1 commit a135165

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/resampling.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -772,8 +772,8 @@ tracking platforms, such as [MLflow](https://mlflow.org/docs/latest/index.html).
772772
773773
$DOC_DEFAULT_LOGGER
774774
775-
When MLJBase is first loaded, the default logger is `nothing`. To reset the logger, see
776-
beow.
775+
When MLJBase is first loaded, the default logger is `nothing`. To reset the logger, see
776+
below.
777777
778778
"""
779779
default_logger() = DEFAULT_LOGGER[]
@@ -1073,8 +1073,8 @@ instance of one of these, then a vector of tuples of the form `(train_rows, test
10731073
is expected. For example, setting
10741074
10751075
```julia
1076-
resampling = [((1:100), (101:200)),
1077-
((101:200), (1:100))]
1076+
resampling = [(1:100, 101:200),
1077+
(101:200, 1:100)]
10781078
```
10791079
10801080
gives two-fold cross-validation using the first 200 rows of data.

0 commit comments

Comments
 (0)