crypto-bigint
crypto-bigint copied to clipboard
[Uint] `gt` and `lt` doc comment error.
I believe there is a minor mistake in the documentation of Uint's lt and gt functions.
Respectively, the two read:
- "/// Returns the truthy value if
self <= rhsand the falsy value otherwise." and - "/// Returns the truthy value if
self >= rhsand the falsy value otherwise."
Given that these are lt and gt (and not leq and geq), these should be strict inequalities: the = should be removed in both cases.