1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-03-17 13:43:31 +01:00

Typo fixes.

This commit is contained in:
Doug Kearns
2010-10-23 23:14:08 +11:00
parent 1e941af1a6
commit c89df81725
9 changed files with 9 additions and 9 deletions

View File

@@ -80,7 +80,7 @@ const StatusLine = Module("statusline", {
// 1. decodeURI decodes %25 to %, which creates unintended
// encoding sequences.
url = url.split("%25").map(function (url) {
// Non-UTF-8 complient URLs cause "malformed URI sequence" errors.
// Non-UTF-8 compliant URLs cause "malformed URI sequence" errors.
try {
return decodeURI(url);
}