Skip to content

Commit 1849afc

Browse files
committed
fix: fix typos
1 parent e94466a commit 1849afc

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

slides.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -86,11 +86,11 @@ title: OOP v DOP
8686

8787
# OOP
8888

89-
* complex entites and systems
89+
* complex entities and systems
9090

9191
<br>
9292

93-
* modelling business entites and processes
93+
* modelling business entities and processes
9494

9595
<br>
9696

@@ -122,23 +122,23 @@ hideInToc: true
122122

123123
<br>
124124

125-
* consume from outside world
125+
* consume data from outside world
126126

127127
<br>
128128

129-
* less/no internal boundaries
129+
* validate data at service boundary
130130

131131
<br>
132132

133-
* validation at service boundary
133+
* less/no internal boundaries
134134

135135
<!--
136136
- Anstatt Objekten modellieren wir Daten
137137
- Wir konsumieren meist von außen
138-
- Wir haben meist keine oder wenige interne Grenzen
139138
- Validierung nehmen wir an den Servicegrenzen vor
139+
- Wir haben meist keine oder wenige interne Grenzen
140140
141-
- möglichen in allen OOP und FP Sprachen
141+
- möglich in allen OOP und FP Sprachen
142142
- Daten sind first class citizen
143143
-->
144144

@@ -814,7 +814,7 @@ static int countStatuses(Iterable<Status> statuses) {
814814
static int countStatuses(Iterable<Status> statuses) {
815815
int total = 0;
816816
for (Status _ : statuses)
817-
total++
817+
total++;
818818
return total;
819819
}
820820
```

0 commit comments

Comments
 (0)