diff options
Diffstat (limited to 'js/uritools.js')
-rw-r--r-- | js/uritools.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/js/uritools.js b/js/uritools.js index 2e50fd2..f3ca554 100644 --- a/js/uritools.js +++ b/js/uritools.js @@ -34,7 +34,7 @@ Naming convention from https://en.wikipedia.org/wiki/URI_scheme#Examples /******************************************************************************/ -µMatrix.URI = (function() { +ηMatrix.URI = (function() { /******************************************************************************/ @@ -167,7 +167,7 @@ URI.set = function(uri) { this.fragment = matches[5] !== undefined ? matches[5].slice(1) : ''; // Assume very simple authority, i.e. just a hostname (highest likelihood - // case for µMatrix) + // case for ηMatrix) if ( reHostFromNakedAuthority.test(this.authority) ) { this.hostname = this.authority; this.port = ''; @@ -286,7 +286,7 @@ URI.hostnameFromURI = function(uri) { matches = reAuthorityFromURI.exec(uri); if ( matches === null ) { return ''; } var authority = matches[1].slice(2); - // Assume very simple authority (most common case for µBlock) + // Assume very simple authority (most common case for ηBlock) if ( reHostFromNakedAuthority.test(authority) ) { return authority.toLowerCase(); } @@ -421,7 +421,7 @@ URI.domainFromURI = function(uri) { /******************************************************************************/ -// Normalize the way µMatrix expects it +// Normalize the way ηMatrix expects it URI.normalizedURI = function() { // Will be removed: |