Skip to content

Commit

Permalink
fixes for snippet checker
Browse files Browse the repository at this point in the history
  • Loading branch information
renejeglinsky committed Nov 13, 2024
1 parent f435fea commit 405a026
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions cds/aspects.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ abstract entity BusinessObject {

```cds
aspect Changes {
operation : String enum { CREATED, MODIFIED, DELETED };
operation : String enum { CREATED; MODIFIED; DELETED };
changedAt : DateTime;
changedBy : User;
diff : array of {
Expand Down Expand Up @@ -414,7 +414,7 @@ entity UsersAndGroups as (
SELECT from Users
) UNION ALL (
SELECT from Groups
)
);
```


Expand Down
2 changes: 1 addition & 1 deletion cds/cdl.md
Original file line number Diff line number Diff line change
Expand Up @@ -1139,7 +1139,7 @@ Instead of interspersing annotations with definitions, you can also use the `ann

```cds
annotate entity Foo with
@my.annotation:foo
@my.annotation:foo,
@another.one: 4711
;
```
Expand Down

0 comments on commit 405a026

Please sign in to comment.