Skip to content

Commit f7d4e37

Browse files
committed
docs: consistent PostgreSQL's name case
1 parent c164ae4 commit f7d4e37

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/en/reference/basic-mapping.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ Here is the list of possible generation strategies:
401401
on DBAL 3, ``GENERATED BY DEFAULT AS IDENTITY`` on DBAL 4).
402402
- ``SEQUENCE``: Tells Doctrine to use a database sequence for ID
403403
generation. This strategy does currently not provide full
404-
portability. Sequences are supported by Oracle, PostgreSql and
404+
portability. Sequences are supported by Oracle, PostgreSQL and
405405
SQL Anywhere.
406406
- ``NONE``: Tells Doctrine that the identifiers are assigned (and
407407
thus generated) by your code. The assignment must take place before

docs/en/tutorials/getting-started.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -534,7 +534,7 @@ the ``id`` tag. It has a ``generator`` tag nested inside, which
534534
specifies that the primary key generation mechanism should automatically
535535
use the database platform's native id generation strategy (for
536536
example, AUTO INCREMENT in the case of MySql, or Sequences in the
537-
case of PostgreSql and Oracle).
537+
case of PostgreSQL and Oracle).
538538

539539
Now that we have defined our first entity and its metadata,
540540
let's update the database schema:
@@ -1287,7 +1287,7 @@ The console output of this script is then:
12871287
result set to retrieve entities from the database. DQL boils down to a
12881288
Native SQL statement and a ``ResultSetMapping`` instance itself. Using
12891289
Native SQL you could even use stored procedures for data retrieval, or
1290-
make use of advanced non-portable database queries like PostgreSql's
1290+
make use of advanced non-portable database queries like PostgreSQL's
12911291
recursive queries.
12921292

12931293

0 commit comments

Comments
 (0)