zinc
zinc copied to clipboard
Host is All Lowercase
url := ZnUrl new
scheme: 'gitlab';
host: 'SeanDeNigris'.
url asString = 'gitlab://seandenigris/'
That is "SeanDeNigris" was transformed into "seandenigris". Is that a bug or a feature?
Aren't DNS names case insensitive and usually lowercase ?
I figured you would know more than me! This SO thread seems to suggest that comparison is case-insensitive, but uppercase is allowed. It doesn't make too much difference to me because I fixed my uses, but wanted to get your take.