1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-03 07:08:01 +00:00

Fix a pluralization error

This commit is contained in:
jbranchaud
2016-01-27 22:04:59 -06:00
parent 9d3b486828
commit 23fa99963a

View File

@@ -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.