Skip to content

Commit

Permalink
Merge 7f4a6dc into ba52c39
Browse files Browse the repository at this point in the history
  • Loading branch information
dubzzz committed Aug 18, 2019
2 parents ba52c39 + 7f4a6dc commit 4e1df80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/check/arbitrary/WebArbitrary.ts
Expand Up @@ -36,7 +36,7 @@ export function webAuthority(constraints?: WebAuthorityConstraints) {
return tuple(
c.withUserInfo === true ? option(hostUserInfo()) : constant(null),
oneof(...hostnameArbs),
c.withPort === true ? option(nat(65536)) : constant(null)
c.withPort === true ? option(nat(65535)) : constant(null)
).map(([u, h, p]) => (u === null ? '' : `${u}@`) + h + (p === null ? '' : `:${p}`));
}

Expand Down

0 comments on commit 4e1df80

Please sign in to comment.