Skip to content

Commit c7fa95c

Browse files
committed
Minor editing in various guides
1 parent 5fac9ee commit c7fa95c

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

get-started/get-help.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -678,7 +678,7 @@ By default, the Cloud MTA Build Tool executes module builds in parallel. If you
678678

679679
`cf undeploy <mta-id>` deletes an MTA (use `cf mtas` to find the MTA ID).
680680

681-
Use the optional `--delete-services` parameter to also wipe service instances.
681+
Use `--delete-services`, `--delete-service-keys` and `--delete-service-brokers` parameters to also wipe services, service keys, or service brokers.
682682

683683
::: danger This also deletes the HDI containers with the application data.
684684
:::

node.js/cds-utils.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -258,16 +258,16 @@ console.log(bg.BLUE, 'this is text with a blue background', RESET)
258258
| **Category** | **Values** |
259259
|----------------------|-------------------------------------------------------------------------------------------|
260260
| **Formatting** | `RESET`, `BOLD`, `BRIGHT`, `DIMMED`, `ITALIC`, `UNDER`, `BLINK`, `FLASH`, `INVERT` |
261-
| **Text Colors** | `BLACK`, `RED`, `GREEN`, `YELLOW`, `BLUE`, `PINK`, `CYAN`, `LIGHT_GRAY`, `DEFAULT`, `GRAY`, `LIGHT_RED`, `LIGHT_GREEN`, `LIGHT_YELLOW`, `LIGHT_BLUE`, `LIGHT_PINK`, `LIGHT_CYAN`, `WHITE` |
262-
| **Background Colors** | `BLACK`, `RED`, `GREEN`, `YELLOW`, `BLUE`, `PINK`, `CYAN`, `WHITE`, `DEFAULT`, `LIGHT_GRAY`, `LIGHT_RED`, `LIGHT_GREEN`, `LIGHT_YELLOW`, `LIGHT_BLUE`, `LIGHT_PINK`, `LIGHT_CYAN`, `LIGHT_WHITE` |
261+
| **Text Colors** | `DEFAULT`, `BLACK`, `RED`, `GREEN`, `YELLOW`, `BLUE`, `PINK`, `CYAN`, `WHITE`, `LIGHT_GRAY`, `LIGHT_RED`, `LIGHT_GREEN`, `LIGHT_YELLOW`, `LIGHT_BLUE`, `LIGHT_PINK`, `LIGHT_CYAN`, `GRAY` |
262+
| **Background Colors** | `DEFAULT`, `BLACK`, `RED`, `GREEN`, `YELLOW`, `BLUE`, `PINK`, `CYAN`, `WHITE`, `LIGHT_GRAY`, `LIGHT_RED`, `LIGHT_GREEN`, `LIGHT_YELLOW`, `LIGHT_BLUE`, `LIGHT_PINK`, `LIGHT_CYAN`, `LIGHT_WHITE` |
263263

264264

265265
## Shortcuts to Node.js Modules
266266

267267
In addition, `cds.utils` provides shortcuts to common Node.js functions and libraries...
268268

269-
| `cds.utils.`... | → shortcut to: |
270-
| --------------- | ------------------------- |
271-
| `inspect` | `require('util').inspect` |
272-
| `path` | `require('path')` |
273-
| `fs` | `require('fs')` |
269+
| `cds.utils.`... | → shortcut to: |
270+
| --------------- | ------------------------------ |
271+
| `inspect` | `require('node:util').inspect` |
272+
| `path` | `require('node:path')` |
273+
| `fs` | `require('node:fs')` |

tools/cds-cli.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
synopsis: >
3-
Available commands of the <code>cds</code> command line client
3+
Available commands of the <code>cds</code> command line client.
44
---
55

66
<script setup>
@@ -484,7 +484,7 @@ could look like this:
484484
```cds [srv/data-service.cds]
485485
using { sap.capire.flights as my } from '../db/schema';
486486
487-
@data.product @hcql @rest @odata
487+
@data.product @hcql @rest @odata
488488
service sap.capire.flights.data {
489489
@readonly entity Flights as projection on my.Flights;
490490
@readonly entity Airlines as projection on my.Airlines;

tools/cds-editors.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
synopsis: >
3-
About supported development environments (IDEs) and features of the CDS language editor.
3+
Supported development environments (IDEs) and features of the CDS language editor.
44
---
55

66
# CDS Editors and IDEs

0 commit comments

Comments
 (0)