Skip to content

Commit 7042272

Browse files
authored
Fix spelling mistakes in Node.js guide (#2226)
1 parent 30065c1 commit 7042272

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

node.js/core-services.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ await srv.update(Books,201).with({stock:111})
282282
await srv.update(Books).set({discount:'10%'}).where({stock:{'>':111}})
283283
```
284284

285-
[Emitting Asynchronous Event Messsages:](#srv-emit-event)
285+
[Emitting Asynchronous Event Messages:](#srv-emit-event)
286286

287287
```js
288288
await srv.emit ('SomeEvent', {foo:'bar'})
@@ -882,7 +882,7 @@ All *cds.Services* are intrinsically events & messaging-enabled. The core implem
882882

883883
::: danger **PLEASE NOTE**
884884

885-
Although emitters do not handle any return values from consumers, it is necessary to always call them with `await`. Keep in mind that `srv.emit()` is an *`async`* method, it is **very important** to properly handle the returned *Promises* by using `await`. Not handing them will likely lead to invalid transaction states and deadlocks.
885+
Although emitters do not handle any return values from consumers, it is necessary to always call them with `await`. Keep in mind that `srv.emit()` is an *`async`* method, it is **very important** to properly handle the returned *Promises* by using `await`. Not handling them will likely lead to invalid transaction states and deadlocks.
886886

887887
:::
888888

@@ -1049,7 +1049,7 @@ All matching `.before`, `.on`, and `.after` handlers are executed in correspondi
10491049
- ***concurrently*** for instances of `cds.Event`
10501050
- **`after`** handlers are always executed *concurrently*
10511051

1052-
In effect, for asynchronous event messages, that is, instances of `cds.Event`, sent via [`srv.emit()`](#srv-emit-event), all registered `.on` handlers are always executed. In contrast to that, for synchronous resuests, that is, instances of `cds.Requests` this is up to the individual handlers calling `next()`. See [`srv.on(request)`](#interceptor-stack-with-next) for an example.
1052+
In effect, for asynchronous event messages, that is, instances of `cds.Event`, sent via [`srv.emit()`](#srv-emit-event), all registered `.on` handlers are always executed. In contrast to that, for synchronous requests, that is, instances of `cds.Requests` this is up to the individual handlers calling `next()`. See [`srv.on(request)`](#interceptor-stack-with-next) for an example.
10531053

10541054

10551055

0 commit comments

Comments
 (0)