*: fix errors reported by languagetool (#6069)

This commit is contained in:
Seth Falco
2021-08-15 19:59:09 +02:00
committed by GitHub
parent 3fbefc8b77
commit 3e4c519004
281 changed files with 433 additions and 429 deletions

View File

@@ -3,15 +3,15 @@
> PostgreSQL command-line client.
> More information: <https://www.postgresql.org/docs/current/app-psql.html>.
- Connect to database. It connects to localhost using default port 5432 with default user as currently logged in user:
- Connect to the database. It connects to localhost using default port 5432 with default user as currently logged in user:
`psql {{database}}`
- Connect to database on given server host running on given port with given username, without a password prompt:
- Connect to the database on given server host running on given port with given username, without a password prompt:
`psql -h {{host}} -p {{port}} -U {{username}} {{database}}`
- Connect to database; user will be prompted for password:
- Connect to the database; user will be prompted for password:
`psql -h {{host}} -p {{port}} -U {{username}} -W {{database}}`