From 4174b7e617ed379b4895fd0db7897a7734d5288f Mon Sep 17 00:00:00 2001 From: Felix Wolfsteller Date: Mon, 13 Sep 2021 10:20:38 +0200 Subject: [PATCH] remove trailing dot in shell command example --- README.md | 2 +- docs/export.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fc04280..7a60252 100644 --- a/README.md +++ b/README.md @@ -561,7 +561,7 @@ dokku postgres:export lollipop > data.dump Note that the export will result in a file containing the binary postgres export data. It can be converted to plain text using `pg_restore` as follows ```shell -pg_restore data.dump -f plain.sql. +pg_restore data.dump -f plain.sql ``` ### Backups diff --git a/docs/export.md b/docs/export.md index 6e2eb52..940558f 100644 --- a/docs/export.md +++ b/docs/export.md @@ -1,5 +1,5 @@ Note that the export will result in a file containing the binary postgres export data. It can be converted to plain text using `pg_restore` as follows ```shell -pg_restore data.dump -f plain.sql. +pg_restore data.dump -f plain.sql ```