From bc18a0594a6302cb05b02996152849c2cb8a0799 Mon Sep 17 00:00:00 2001 From: Jamie Thompson Date: Thu, 17 Oct 2024 00:30:36 +0200 Subject: [PATCH] fix link to toolkit docs --- _overviews/getting-started/install-scala.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_overviews/getting-started/install-scala.md b/_overviews/getting-started/install-scala.md index 8ac7d57480..eeddfed422 100644 --- a/_overviews/getting-started/install-scala.md +++ b/_overviews/getting-started/install-scala.md @@ -198,7 +198,7 @@ You can read more about [main methods](/scala3/book/methods-main-methods.html) a ### Adding dependencies We now write a program that will count the files and directories present in its working directory. -We use the [os-lib](https://github.com/com-lihaoyi/os-lib) library from the [Scala toolkit](toolkit/introduction.html) +We use the [os-lib](https://github.com/com-lihaoyi/os-lib) library from the [Scala toolkit](/toolkit/introduction.html) for that purpose. A dependency on the library can be added with the `//> using` directive. Put the following code in `counter.scala`. ```scala //> using scala {{site.scala-3-version}}