Corrected a typo in the string.inc file. (bug 4207, r=fyren)

This commit is contained in:
Liam 2010-02-13 01:49:39 -05:00
parent e60d5e6aeb
commit 4bdc495d01

View File

@ -379,7 +379,7 @@ native bool:IsCharLower(chr);
/**
* Strips a quote pair off a string if it exists. That is, the following
* replace rule is applied once: $"(.*)"^ -> $\1^
* replace rule is applied once: ^"(.*)"$ -> ^\1$
*
* Note that the leading and trailing quotes will only be removed if both
* exist. Otherwise, the string is left unmodified. This function should