Skip to content

Commit

Permalink
Merge pull request #3056 from michaelg100/master
Browse files Browse the repository at this point in the history
Update RxJS Observable URL to newer version + Fix some spelling mistakes
  • Loading branch information
kamilmysliwiec authored Jul 8, 2024
2 parents bfd7831 + b0ddbc6 commit 43b4ea5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion content/controllers.md
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ async findAll() {
}
```

The above code is fully valid. Furthermore, Nest route handlers are even more powerful by being able to return RxJS [observable streams](http://reactivex.io/rxjs/class/es6/Observable.js~Observable.html). Nest will automatically subscribe to the source underneath and take the last emitted value (once the stream is completed).
The above code is fully valid. Furthermore, Nest route handlers are even more powerful by being able to return RxJS [observable streams](https://rxjs-dev.firebaseapp.com/guide/observable). Nest will automatically subscribe to the source underneath and take the last emitted value (once the stream is completed).

```typescript
@@filename(cats.controller)
Expand Down
4 changes: 2 additions & 2 deletions content/devtools/ci-cd.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ Similarly, if we're working on a **large codebase** and we modify a module to be

#### Build preview

For every published graph we can go back in time and preview how it looked before by clicking at the **Preview** button. Furthermore, if the report was generated, we should see the differences higlighted on our graph:
For every published graph we can go back in time and preview how it looked before by clicking at the **Preview** button. Furthermore, if the report was generated, we should see the differences highlighted on our graph:

- green nodes represent added elements
- light white nodes represent updated elements
Expand Down Expand Up @@ -132,7 +132,7 @@ jobs:
Ideally, `DEVTOOLS_API_KEY` environment variable should be retrieved from GitHub Secrets, read more [here](https://docs.github.com/en/actions/security-guides/encrypted-secrets#creating-encrypted-secrets-for-a-repository) .

This workflow will run per each pull request that's targeting the `master` branch OR in case there's a direct commit to the `master` branch. Feel free to align this configuration to whatever your project needs. What's essential here is that we provide necessary environment varaiables for our `GraphPublisher` class (to run).
This workflow will run per each pull request that's targeting the `master` branch OR in case there's a direct commit to the `master` branch. Feel free to align this configuration to whatever your project needs. What's essential here is that we provide necessary environment variables for our `GraphPublisher` class (to run).

However, there's one variable that needs to be updated before we can start using this workflow - `DEVTOOLS_API_KEY`. We can generate an API key dedicated for our project on this [page](https://devtools.nestjs.com/settings/manage-api-keys).

Expand Down
2 changes: 1 addition & 1 deletion content/microservices/redis.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ The `options` property is specific to the chosen transporter. The <strong>Redis<
</tr>
<tr>
<td><code>wildcards</code></td>
<td>Enables Redis wilcard subscriptions, instructing transporter to use <code>psubscribe</code>/<code>pmessage</code> under the hood. (default: <code>false</code>)</td>
<td>Enables Redis wildcard subscriptions, instructing transporter to use <code>psubscribe</code>/<code>pmessage</code> under the hood. (default: <code>false</code>)</td>
</tr>
</table>

Expand Down

0 comments on commit 43b4ea5

Please sign in to comment.