From bda2ce6ffdb04f37a920294ca2cc560c8ddebecb Mon Sep 17 00:00:00 2001 From: Dan Robinson Date: Sun, 11 Aug 2013 00:41:23 -0700 Subject: [PATCH] Brings postgresql_db examples in line with documentation. As of now, the documentation lists a parameter as "name", whereas the examples use a parameter called "db". This brings them in line. --- library/database/postgresql_db | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/database/postgresql_db b/library/database/postgresql_db index 2025456bf0d..7f08c5f1bd5 100644 --- a/library/database/postgresql_db +++ b/library/database/postgresql_db @@ -90,12 +90,12 @@ author: Lorin Hochstein EXAMPLES = ''' # Create a new database with name "acme" -- postgresql_db: db=acme +- postgresql_db: name=acme # Create a new database with name "acme" and specific encoding and locale # settings. If a template different from "template0" is specified, encoding # and locale settings must match those of the template. -- postgresql_db: db=acme +- postgresql_db: name=acme encoding='UTF-8' lc_collate='de_DE.UTF-8' lc_ctype='de_DE.UTF-8'