File tree Expand file tree Collapse file tree 2 files changed +11
-6
lines changed
runtime/src/main/scala/org/scalaexercises/exercises Expand file tree Collapse file tree 2 files changed +11
-6
lines changed Original file line number Diff line number Diff line change 1- version =2.5 . 3
1+ version =2.6 . 1
22style = defaultWithAlign
33maxColumn = 100
44
Original file line number Diff line number Diff line change @@ -19,7 +19,8 @@ package model
1919
2020// This is the exercise runtime metamodel
2121
22- /** An exercise library.
22+ /**
23+ * An exercise library.
2324 */
2425trait Library {
2526 def owner : String
@@ -34,14 +35,16 @@ trait Library {
3435 def buildMetaInfo : BuildInfo
3536}
3637
37- /** Library Build Metadata Information
38+ /**
39+ * Library Build Metadata Information
3840 */
3941trait BuildInfo {
4042 def resolvers : List [String ]
4143 def libraryDependencies : List [String ]
4244}
4345
44- /** A section in a library.
46+ /**
47+ * A section in a library.
4548 */
4649trait Section {
4750 def name : String
@@ -52,7 +55,8 @@ trait Section {
5255 def contributions : List [Contribution ]
5356}
5457
55- /** A contribution to a section.
58+ /**
59+ * A contribution to a section.
5660 */
5761trait Contribution {
5862 def sha : String
@@ -64,7 +68,8 @@ trait Contribution {
6468 def avatarUrl : String
6569}
6670
67- /** Exercises within a section.
71+ /**
72+ * Exercises within a section.
6873 */
6974trait Exercise {
7075 def name : String
You can’t perform that action at this time.
0 commit comments