File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -86,11 +86,11 @@ title: OOP v DOP
86
86
87
87
# OOP
88
88
89
- * complex entites and systems
89
+ * complex entities and systems
90
90
91
91
<br >
92
92
93
- * modelling business entites and processes
93
+ * modelling business entities and processes
94
94
95
95
<br >
96
96
@@ -122,23 +122,23 @@ hideInToc: true
122
122
123
123
<br >
124
124
125
- * consume from outside world
125
+ * consume data from outside world
126
126
127
127
<br >
128
128
129
- * less/no internal boundaries
129
+ * validate data at service boundary
130
130
131
131
<br >
132
132
133
- * validation at service boundary
133
+ * less/no internal boundaries
134
134
135
135
<!--
136
136
- Anstatt Objekten modellieren wir Daten
137
137
- Wir konsumieren meist von außen
138
- - Wir haben meist keine oder wenige interne Grenzen
139
138
- Validierung nehmen wir an den Servicegrenzen vor
139
+ - Wir haben meist keine oder wenige interne Grenzen
140
140
141
- - möglichen in allen OOP und FP Sprachen
141
+ - möglich in allen OOP und FP Sprachen
142
142
- Daten sind first class citizen
143
143
-->
144
144
@@ -814,7 +814,7 @@ static int countStatuses(Iterable<Status> statuses) {
814
814
static int countStatuses(Iterable<Status> statuses) {
815
815
int total = 0;
816
816
for (Status _ : statuses)
817
- total++
817
+ total++;
818
818
return total;
819
819
}
820
820
```
You can’t perform that action at this time.
0 commit comments