Merge pull request #507 from jeertmans/patch-1

This commit is contained in:
Amanieu d'Antras 2022-11-28 10:39:26 +00:00 committed by GitHub
commit e8bb3b9fd2
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.