Skip to content

Commit f4661b4

Browse files
committed
.
1 parent edf50ae commit f4661b4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

cds/aspects.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ aspect temporal {
258258

259259
[Some of such common reuse aspects are already covered by `@sap/cds/common`.](common) {.learn-more}
260260

261-
Consumers would then flexible use these reuse aspects like so:
261+
Consumers would then flexibly use these reuse aspects like so:
262262

263263
```cds
264264
using { cuid, managed, tracked, extensible, temporal } from 'your-base-classes';
@@ -421,7 +421,7 @@ entity UsersAndGroups as (
421421

422422
### Table per class strategy
423423

424-
If we want a separate table for each entity in our model above, including the 'superclass' entity Grantee, we'd have to rewrite our model to use composition over inheritance like that:
424+
If we want a separate table for each entity in our model above, including the 'superclass' entity `Grantees`, we'd have to rewrite our model to use composition over inheritance like that:
425425

426426
```cds
427427
entity Grantees {
@@ -437,7 +437,7 @@ entity Groups {
437437
}
438438
```
439439

440-
This would allow to display heterogeneous lists of Grantees without UNIONs. A lot more JOINs would be required in real-world examples.
440+
This would allow to display heterogeneous lists of `Grantees` without UNIONs. A lot more JOINs would be required in real-world examples, though.
441441

442442

443443

0 commit comments

Comments
 (0)