Address comment

This commit is contained in:
Arthur Baars
2022-03-16 12:26:39 +01:00
parent cf4b834536
commit 852f05bfb7

View File

@@ -1009,6 +1009,12 @@ module RegExpPatterns {
// according to ranking by http://google.com/search?q=site:.<<TLD>>
result = "(?:com|org|edu|gov|uk|net|io)(?![a-z0-9])"
}
/**
* Gets a pattern that matches common top-level domain names in lower case.
* DEPRECATED: use `getACommonTld` instead
*/
deprecated predicate commonTLD = getACommonTld/0;
}
/**