From c42c698947631f1b24bb87c9e990772e135898ac Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Wed, 10 Feb 2016 20:56:53 -0600 Subject: [PATCH] Fix a typo in the latest til --- postgres/list-available-schemas.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/postgres/list-available-schemas.md b/postgres/list-available-schemas.md index 7ab1efa..86f211f 100644 --- a/postgres/list-available-schemas.md +++ b/postgres/list-available-schemas.md @@ -2,7 +2,7 @@ Use the `\dn` command within a `psql` session to list the available schemas. This will only included user created schemas. This means that schemas like -`public` will be listed whereas schemas `information_schema` and +`public` will be listed whereas schemas like `information_schema` and `pg_catalog` will not. You can use `\dnS` to also list system schemas.