Use words instead of quotes for better clarity

As suggested by sneak-it
This commit is contained in:
Corey D 2021-08-22 11:11:12 +10:00 committed by Your Name
parent e82f0acdb8
commit ee722d778f

View File

@ -374,8 +374,8 @@ methodmap Database < Handle
// the database's character set. // the database's character set.
// //
// NOTE: SourceMod only guarantees properly escaped strings when the query // NOTE: SourceMod only guarantees properly escaped strings when the query
// encloses the string in ''. While drivers tend to allow "" instead, // encloses the string in single quotes. While drivers tend to allow double
// the string may be not be escaped (for example, on SQLite)! // quotes (") instead, the string may be not be escaped (for example, on SQLite)!
// //
// @param string String to quote. // @param string String to quote.
// @param buffer Buffer to store quoted string in. // @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. * the database's character set.
* *
* NOTE: SourceMod only guarantees properly escaped strings when the query * NOTE: SourceMod only guarantees properly escaped strings when the query
* encloses the string in ''. While drivers tend to allow "" instead, * encloses the string in single quotes. While drivers tend to allow double
* the string may be not be escaped (for example, on SQLite)! * quotes (") instead, the string may be not be escaped (for example, on SQLite)!
* *
* @param database A database Handle. * @param database A database Handle.
* @param string String to quote. * @param string String to quote.