Skip to content

Commit

Permalink
fix: fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
MechTee committed Mar 26, 2024
1 parent e94466a commit 1849afc
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions slides.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,11 @@ title: OOP v DOP

# OOP

* complex entites and systems
* complex entities and systems

<br>

* modelling business entites and processes
* modelling business entities and processes

<br>

Expand Down Expand Up @@ -122,23 +122,23 @@ hideInToc: true

<br>

* consume from outside world
* consume data from outside world

<br>

* less/no internal boundaries
* validate data at service boundary

<br>

* validation at service boundary
* less/no internal boundaries

<!--
- Anstatt Objekten modellieren wir Daten
- Wir konsumieren meist von außen
- Wir haben meist keine oder wenige interne Grenzen
- Validierung nehmen wir an den Servicegrenzen vor
- Wir haben meist keine oder wenige interne Grenzen
- möglichen in allen OOP und FP Sprachen
- möglich in allen OOP und FP Sprachen
- Daten sind first class citizen
-->

Expand Down Expand Up @@ -814,7 +814,7 @@ static int countStatuses(Iterable<Status> statuses) {
static int countStatuses(Iterable<Status> statuses) {
int total = 0;
for (Status _ : statuses)
total++
total++;
return total;
}
```
Expand Down

0 comments on commit 1849afc

Please sign in to comment.