Skip to content

Commit 73c5ee2

Browse files
committed
Avoid Liquid syntax errors
1 parent f152056 commit 73c5ee2

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

_overviews/core/collections-migration-213.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -142,10 +142,8 @@ import scala.annotation.compileTimeOnly
142142
* `scala.collection.immutable.Seq`. In this code base usage of unqualified `Seq` is banned: use
143143
* `sc.Seq` or `sci.Seq` instead.
144144
*
145-
* {{{
146145
* import scala.{ collection => sc }
147146
* import scala.collection.{ immutable => sci }
148-
* }}}
149147
*
150148
* This `Seq` trait is a dummy type to prevent the use of `Seq`.
151149
*/
@@ -157,10 +155,8 @@ private[example] trait Seq[A1, F1[A2], A3]
157155
* `scala.collection.immutable.IndexedSeq`. In this code base usage of unqualified `IndexedSeq` is
158156
* banned: use `sc.IndexedSeq` or `sci.IndexedSeq`.
159157
*
160-
* {{{
161158
* import scala.{ collection => sc }
162159
* import scala.collection.{ immutable => sci }
163-
* }}}
164160
*
165161
* This `IndexedSeq` trait is a dummy type to prevent the use of `IndexedSeq`.
166162
*/

0 commit comments

Comments
 (0)