Skip to content

Commit 8f05046

Browse files
committed
Fix typo in package name
1 parent 91e2da4 commit 8f05046

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/src/lecture_06/develop.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -263,15 +263,15 @@ x = FashionMNIST.traintensor(1);
263263
plot(image(x); axis = nothing, border = :none)
264264
```
265265

266-
**Hint:** Each Julia package contains its environment for tracking package dependencies. Use proper commands in the Pkg REPL to add `Colors` as a dependency of the ImageInspector package. Do not forget to add `MLDataset` and `Plots` to the `scripts` environment.
266+
**Hint:** Each Julia package contains its environment for tracking package dependencies. Use proper commands in the Pkg REPL to add `Colors` as a dependency of the ImageInspector package. Do not forget to add `MLDatasets` and `Plots` to the `scripts` environment.
267267

268268
```@raw html
269269
</p></div>
270270
<details class = "solution-body">
271271
<summary class = "solution-header">Solution:</summary><p>
272272
```
273273

274-
First, we need to install all necessary packages. Since we set the `scripts` environment as the default one for this project, we first install `MLDataset` and `Plots`.
274+
First, we need to install all necessary packages. Since we set the `scripts` environment as the default one for this project, we first install `MLDatasets` and `Plots`.
275275

276276
```julia
277277
(scripts) pkg> add MLDatasets Plots

0 commit comments

Comments
 (0)