@@ -40,7 +40,7 @@ See this original discussion for more context:
4040### Methods
4141
4242``` scala
43- import scala . annotation .unroll
43+ import com . lihaoyi .unroll
4444
4545object Unrolled {
4646 def foo (s : String , n : Int = 1 , @ unroll b : Boolean = true , l : Long = 0 ) = s + n + b + l
@@ -50,7 +50,7 @@ object Unrolled{
5050Unrolls to:
5151
5252``` scala
53- import scala . annotation .unroll
53+ import com . lihaoyi .unroll
5454
5555object Unrolled {
5656 def foo (s : String , n : Int = 1 , @ unroll b : Boolean = true , l : Long = 0 ) = s + n + b + l
@@ -62,7 +62,7 @@ object Unrolled{
6262### Classes
6363
6464```scala
65- import scala . annotation .unroll
65+ import com . lihaoyi .unroll
6666
6767class Unrolled (s : String , n : Int = 1 , @ unroll b : Boolean = true , l : Long = 0 ){
6868 def foo = s + n + b + l
@@ -72,7 +72,7 @@ class Unrolled(s: String, n: Int = 1, @unroll b: Boolean = true, l: Long = 0){
7272Unrolls to:
7373
7474``` scala
75- import scala . annotation .unroll
75+ import com . lihaoyi .unroll
7676
7777class Unrolled (s : String , n : Int = 1 , @ unroll b : Boolean = true , l : Long = 0 ){
7878 def foo = s + n + b + l
@@ -85,7 +85,7 @@ class Unrolled(s: String, n: Int = 1, @unroll b: Boolean = true, l: Long = 0){
8585### Constructors
8686
8787``` scala
88- import scala . annotation .unroll
88+ import com . lihaoyi .unroll
8989
9090class Unrolled () {
9191 var foo = " "
@@ -100,7 +100,7 @@ class Unrolled() {
100100Unrolls to:
101101
102102``` scala
103- import scala . annotation .unroll
103+ import com . lihaoyi .unroll
104104
105105class Unrolled () {
106106 var foo = " "
@@ -118,7 +118,7 @@ class Unrolled() {
118118### Case Classes
119119
120120``` scala
121- import scala . annotation .unroll
121+ import com . lihaoyi .unroll
122122
123123case class Unrolled (s : String , n : Int = 1 , @ unroll b : Boolean = true ){
124124 def foo = s + n + b
@@ -128,7 +128,7 @@ case class Unrolled(s: String, n: Int = 1, @unroll b: Boolean = true){
128128Unrolls to:
129129
130130``` scala
131- import scala . annotation .unroll
131+ import com . lihaoyi .unroll
132132
133133case class Unrolled (s : String , n : Int = 1 , @ unroll b : Boolean = true , l : Long = 0L ){
134134 def this (s : String , n : Int ) = this (s, n, true , 0L )
@@ -148,7 +148,7 @@ object Unrolled{
148148### Abstract Methods
149149
150150``` scala
151- import scala . annotation .unroll
151+ import com . lihaoyi .unroll
152152
153153trait Unrolled {
154154 def foo (s : String , n : Int = 1 , @ unroll b : Boolean = true ): String
0 commit comments