diff options
author | Sandesh Pyakurel <82999440+Sandesh-Pyakurel@users.noreply.github.com> | 2023-10-13 20:45:28 +0545 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-13 17:00:28 +0200 |
commit | 8d9c9b6174466cc432a9946b0459c214586cb1b2 (patch) | |
tree | 9fb24b4e8ebd257743eb2e3df3467937b62ea2b4 | |
parent | 3efdbf9e1e6663adf9d8a2d113ec62855c621ef7 (diff) | |
download | zsh-8d9c9b6174466cc432a9946b0459c214586cb1b2.tar.gz zsh-8d9c9b6174466cc432a9946b0459c214586cb1b2.tar.bz2 zsh-8d9c9b6174466cc432a9946b0459c214586cb1b2.zip |
chore(postgres): fix typo (#11967)
-rw-r--r-- | plugins/postgres/README.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/postgres/README.md b/plugins/postgres/README.md index 59445f31c..3f59a8fe4 100644 --- a/plugins/postgres/README.md +++ b/plugins/postgres/README.md @@ -19,4 +19,4 @@ plugins=(... postgres) | stoppost | `pg_ctl -D /usr/local/var/postgres stop -s -m fast` | Stop postgres server | | restartpost | `stoppost && sleep 1 && startpost` | Restart (calls stop, then start) | | reloadpost | `pg_ctl reload -D /usr/local/var/postgres -s` | Reload postgres configuration (some setting require restart)| -| statuspost | `pg_ctl status -D /usr/local/var/postgres -s` | Check startus of postgres server (running, stopped) | +| statuspost | `pg_ctl status -D /usr/local/var/postgres -s` | Check status of postgres server (running, stopped) | |