From c74fa3a5d9bf37ff7ecda499c3b5b39ae1129266 Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Wed, 27 Jan 2016 22:06:09 -0600 Subject: [PATCH] Remove some redundant wording --- postgres/escaping-a-quote-in-a-string.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/postgres/escaping-a-quote-in-a-string.md b/postgres/escaping-a-quote-in-a-string.md index b0cb93e..d34771b 100644 --- a/postgres/escaping-a-quote-in-a-string.md +++ b/postgres/escaping-a-quote-in-a-string.md @@ -1,9 +1,9 @@ # Escaping A Quote In A String In PostgreSQL, string (`varchar` and `text`) literals are declared with -single quotes (`'`). That means that any string containing a single quote as -part of the content of the string will need some escaping. The way to escape -a single quote is with another single quote. +single quotes (`'`). That means that any string containing a single quote +will need some escaping. The way to escape a single quote is with another +single quote. ```sql > select 'what''s up!';