Fix some typos

This commit is contained in:
Liam Miller-Cushon
2021-08-25 13:56:44 -07:00
parent fb71d9d40f
commit 8ca8a80753
6 changed files with 11 additions and 11 deletions

View File

@@ -109,7 +109,7 @@ public class Cookie {
// parse the remaining cookie attributes
while (x.more()) {
name = unescape(x.nextTo("=;")).trim().toLowerCase(Locale.ROOT);
// don't allow a cookies attributes to overwrite it's name or value.
// don't allow a cookies attributes to overwrite its name or value.
if("name".equalsIgnoreCase(name)) {
throw new JSONException("Illegal attribute name: 'name'");
}