Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Creator applications allow to use simple function call syntax to create instance
of a class, even if there is no apply method implemented. Example:
```scala
class StringBuilder(s: String) {
def this() = this(s)
def this() = this("")
}

StringBuilder("abc") // same as new StringBuilder("abc")
Expand Down