From 23fa99963acfb051713cdf666c3776d5cf77bd99 Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Wed, 27 Jan 2016 22:04:59 -0600 Subject: [PATCH] Fix a pluralization error --- postgres/escaping-a-quote-in-a-string.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/postgres/escaping-a-quote-in-a-string.md b/postgres/escaping-a-quote-in-a-string.md index 97be966..b0cb93e 100644 --- a/postgres/escaping-a-quote-in-a-string.md +++ b/postgres/escaping-a-quote-in-a-string.md @@ -1,6 +1,6 @@ # Escaping A Quote In A String -In PostgreSQL, strings (`varchar` and `text`) literals are declared with +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.