Skip to content

Commit d53fe3f

Browse files
author
Andriy Yurchuk
committed
Fix code style by replacing tab with two spaces
1 parent 1f4e98b commit d53fe3f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

_tour/self-types.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ trait User {
2424
}
2525
2626
trait Tweeter {
27-
this: User => // reassign this
28-
def tweet(tweetText: String) = println(s"$username: $tweetText")
27+
this: User => // reassign this
28+
def tweet(tweetText: String) = println(s"$username: $tweetText")
2929
}
3030
3131
class VerifiedTweeter(val username_ : String) extends Tweeter with User { // We mixin User because Tweeter required it
32-
def username = s"real $username_"
32+
def username = s"real $username_"
3333
}
3434
3535
val realBeyoncé = new VerifiedTweeter("Beyoncé")

0 commit comments

Comments
 (0)