fix(docs): typo in docstrings

Hello, I think you misspelled `width` to `with`.
This commit is contained in:
Jérome Eertmans 2022-11-28 10:53:42 +01:00 committed by GitHub
parent ad4ab99a2e
commit 80828bfb0b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -26,10 +26,10 @@ pub(crate) trait Float:
+ ops::Div<Output = Self>
+ ops::Rem<Output = Self>
{
/// A uint of the same with as the float
/// A uint of the same width as the float
type Int: Int;
/// A int of the same with as the float
/// A int of the same width as the float
type SignedInt: Int;
/// An int capable of containing the exponent bits plus a sign bit. This is signed.