Skip to content

Commit 853a7fc

Browse files
committed
docs: single colon for using directive
1 parent fdfc3ce commit 853a7fc

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

docs/examples.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This example was written by [Koroeskohr] and taken from the [Virtuslab Blog](htt
1010
@:choice(scala-3)
1111

1212
```scala mdoc:silent
13-
//> using toolkit typelevel::@VERSION@
13+
//> using toolkit typelevel:@VERSION@
1414

1515
import cats.effect.*
1616
import io.circe.Decoder
@@ -47,7 +47,7 @@ object Main extends IOApp.Simple:
4747
@:choice(scala-2)
4848

4949
```scala mdoc:reset:silent
50-
//> using toolkit typelevel::@VERSION@
50+
//> using toolkit typelevel:@VERSION@
5151

5252
import cats.effect._
5353
import io.circe.Decoder
@@ -108,7 +108,7 @@ $ echo -e "foo\nbar" | ./mkString --prefix "[" -d "," --suffix "]"
108108

109109
@:choice(scala-3)
110110
```scala mdoc:reset:silent
111-
//> using toolkit typelevel::@VERSION@
111+
//> using toolkit typelevel:@VERSION@
112112

113113
import cats.effect.*
114114
import cats.syntax.all.*
@@ -136,7 +136,7 @@ object Main extends CommandIOApp("mkString", "Concatenates strings from stdin"):
136136
@:choice(scala-2)
137137

138138
```scala mdoc:reset:silent
139-
//> using toolkit typelevel::@VERSION@
139+
//> using toolkit typelevel:@VERSION@
140140

141141
import cats.effect._
142142
import cats.syntax.all._
@@ -183,7 +183,7 @@ id,First Name,Age,flight number,destination
183183

184184
@:choice(scala-3)
185185
```scala mdoc:reset:silent
186-
//> using toolkit typelevel::@VERSION@
186+
//> using toolkit typelevel:@VERSION@
187187

188188
import cats.effect.*
189189
import fs2.text
@@ -254,7 +254,7 @@ object CSVPrinter extends IOApp.Simple:
254254

255255
@:choice(scala-2)
256256
```scala mdoc:reset:silent
257-
//> using toolkit typelevel::@VERSION@
257+
//> using toolkit typelevel:@VERSION@
258258

259259
import cats.effect._
260260
import fs2.text
@@ -358,7 +358,7 @@ perft 6 227689589
358358
@:choice(scala-3)
359359

360360
```scala mdoc:reset:silent
361-
//> using toolkit typelevel::@VERSION@
361+
//> using toolkit typelevel:@VERSION@
362362

363363
import cats.effect.{IO, IOApp}
364364
import fs2.{Stream, text}
@@ -388,7 +388,7 @@ object PerftConverter extends IOApp.Simple:
388388

389389
@:choice(scala-2)
390390
```scala mdoc:reset:silent
391-
//> using toolkit typelevel::@VERSION@
391+
//> using toolkit typelevel:@VERSION@
392392

393393
import cats.effect.{IO, IOApp}
394394
import fs2.{Stream, text}
@@ -464,7 +464,7 @@ As an example, let's imagine we have a `Book` class we would like to write to a
464464

465465
@:choice(scala-3)
466466
```scala mdoc:reset:silent
467-
//> using toolkit typelevel::@VERSION@
467+
//> using toolkit typelevel:@VERSION@
468468

469469
import fs2.data.csv.*
470470
import fs2.data.csv.generic.semiauto.*
@@ -501,7 +501,7 @@ object WriteBooksToCsv extends IOApp.Simple:
501501
@:choice(scala-2)
502502

503503
```scala mdoc:reset:silent
504-
//> using toolkit typelevel::@VERSION@
504+
//> using toolkit typelevel:@VERSION@
505505

506506
import fs2.data.csv._
507507
import fs2.data.csv.generic.semiauto._

0 commit comments

Comments
 (0)