From 30c764e4b3465c7338e47b680424ede85b0cb2e2 Mon Sep 17 00:00:00 2001
From: Corey D <sirdigbot@users.noreply.github.com>
Date: Sun, 22 Aug 2021 11:11:12 +1000
Subject: [PATCH] Use words instead of quotes for better clarity

As suggested by sneak-it
---
 plugins/include/dbi.inc | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/plugins/include/dbi.inc b/plugins/include/dbi.inc
index 85eae3e4..23dbe9aa 100644
--- a/plugins/include/dbi.inc
+++ b/plugins/include/dbi.inc
@@ -374,8 +374,8 @@ methodmap Database < Handle
 	// the database's character set.
 	//
 	// NOTE: SourceMod only guarantees properly escaped strings when the query
-	// encloses the string in ''. While drivers tend to allow "" instead,
-	// the string may be not be escaped (for example, on SQLite)!
+	// encloses the string in single quotes. While drivers tend to allow double
+	// quotes (") instead, the string may be not be escaped (for example, on SQLite)!
 	//
 	// @param string        String to quote.
 	// @param buffer        Buffer to store quoted string in.
@@ -635,8 +635,8 @@ native bool SQL_GetError(Handle hndl, char[] error, int maxlength);
  * the database's character set.
  *
  * NOTE: SourceMod only guarantees properly escaped strings when the query
- * encloses the string in ''. While drivers tend to allow "" instead,
- * the string may be not be escaped (for example, on SQLite)!
+ * encloses the string in single quotes. While drivers tend to allow double
+ * quotes (") instead, the string may be not be escaped (for example, on SQLite)!
  *
  * @param database      A database Handle.
  * @param string        String to quote.