Skip to content

Commit 43396b5

Browse files
committed
fix: Fixes lints and errors.
1 parent b9fb3f2 commit 43396b5

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

docs/01-get-started/03-working-with-the-database.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -426,6 +426,7 @@ class ResultDisplay extends StatelessWidget {
426426
To run the application with database support, follow these steps in order:
427427

428428
First, start the database and apply migrations:
429+
429430
```bash
430431
$ cd magic_recipe/magic_recipe_server
431432
$ docker compose up -d # Start the database container
@@ -437,6 +438,7 @@ The `--apply-migrations` flag is safe to use during development - if no migratio
437438
:::
438439

439440
Next, launch the Flutter app:
441+
440442
```bash
441443
$ cd magic_recipe/magic_recipe_flutter
442444
$ flutter run -d chrome

docs/05-tutorials/02-tutorials/02-real-time-communication.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ _This tutorial is also available as a video._
88

99
:::info
1010

11-
Before you begin, make sure that you have [installed Serverpod](/). It's also recommended that you read the [Get started with Mini](../serverpod-mini.md) guide.
11+
Before you begin, make sure that you have [installed Serverpod](/). It's also recommended that you read the [Get started with Mini](../../serverpod-mini.md) guide.
1212

1313
:::
1414

@@ -24,7 +24,7 @@ Pixorama is a collaborative drawing app where users can place pixels on a grid t
2424

2525
In traditional REST APIs, communication with the server involves sending a request and receiving a response. However, real-time communication requires the server to push updates to clients as they happen. This is commonly achieved using web sockets, which maintain an open connection between the server and client, allowing for continuous data exchange. While web sockets can be tricky, requiring data serialization and connection management, Serverpod simplifies this process.
2626

27-
With the release of Serverpod 2.1, a new feature called [streaming methods](../concepts/streams) was introduced. This feature allows us to return a stream from a server method and call it from our app. Serverpod handles the underlying web socket connection for us. Now, let's get started with building Pixorama.
27+
With the release of Serverpod 2.1, a new feature called [streaming methods](../../concepts/streams) was introduced. This feature allows us to return a stream from a server method and call it from our app. Serverpod handles the underlying web socket connection for us. Now, let's get started with building Pixorama.
2828

2929
## Setting up the project
3030

0 commit comments

Comments
 (0)