File tree 2 files changed +11
-6
lines changed
runtime/src/main/scala/org/scalaexercises/exercises
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
2
2
style = defaultWithAlign
3
3
maxColumn = 100
4
4
Original file line number Diff line number Diff line change @@ -19,7 +19,8 @@ package model
19
19
20
20
// This is the exercise runtime metamodel
21
21
22
- /** An exercise library.
22
+ /**
23
+ * An exercise library.
23
24
*/
24
25
trait Library {
25
26
def owner : String
@@ -34,14 +35,16 @@ trait Library {
34
35
def buildMetaInfo : BuildInfo
35
36
}
36
37
37
- /** Library Build Metadata Information
38
+ /**
39
+ * Library Build Metadata Information
38
40
*/
39
41
trait BuildInfo {
40
42
def resolvers : List [String ]
41
43
def libraryDependencies : List [String ]
42
44
}
43
45
44
- /** A section in a library.
46
+ /**
47
+ * A section in a library.
45
48
*/
46
49
trait Section {
47
50
def name : String
@@ -52,7 +55,8 @@ trait Section {
52
55
def contributions : List [Contribution ]
53
56
}
54
57
55
- /** A contribution to a section.
58
+ /**
59
+ * A contribution to a section.
56
60
*/
57
61
trait Contribution {
58
62
def sha : String
@@ -64,7 +68,8 @@ trait Contribution {
64
68
def avatarUrl : String
65
69
}
66
70
67
- /** Exercises within a section.
71
+ /**
72
+ * Exercises within a section.
68
73
*/
69
74
trait Exercise {
70
75
def name : String
You can’t perform that action at this time.
0 commit comments