Skip to content

Commit 7be42a4

Browse files
authored
Merge pull request #2709 from rikurauhala/patch-26
Fix typos in part13a.md
2 parents c07acab + 806193b commit 7be42a4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/content/13/en/part13a.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ In the theory material of this section, we will be building a Postgres-enabled v
7575

7676
#### Fly.io
7777

78-
Let us create a new Fly.io-app by running the command _fly launch_ in a directory where we shall add the code of the app. Let us also create the Postgress database for the app:
78+
Let us create a new Fly.io-app by running the command _fly launch_ in a directory where we shall add the code of the app. Let us also create the Postgres database for the app:
7979

8080
![](../../images/13/6.png)
8181

@@ -316,7 +316,7 @@ DATABASE_URL=postgres://postgres:<password>@127.0.0.1:5432/postgres
316316

317317
Password was shown when the database was created, so hopefully you have not lost it!
318318

319-
The last part of the connect string, <i>postgres</i> refers to the database name. The name could be any string but we use here <i>postgres</i> since it is the default database that is automatically created within a Postgress database. If needed, new databases can be created with the command [CREATE DATABASE](https://www.postgresql.org/docs/14/sql-createdatabase.html).
319+
The last part of the connect string, <i>postgres</i> refers to the database name. The name could be any string but we use here <i>postgres</i> since it is the default database that is automatically created within a Postgres database. If needed, new databases can be created with the command [CREATE DATABASE](https://www.postgresql.org/docs/14/sql-createdatabase.html).
320320

321321
Once the connect string has been set up in the file <i>.env</i> we can test for a connection:
322322

0 commit comments

Comments
 (0)