summaryrefslogtreecommitdiffstats
path: root/vendor/compiler_builtins/src/float/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/compiler_builtins/src/float/mod.rs')
-rw-r--r--vendor/compiler_builtins/src/float/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/vendor/compiler_builtins/src/float/mod.rs b/vendor/compiler_builtins/src/float/mod.rs
index 01a5504d5..fdbe9dde3 100644
--- a/vendor/compiler_builtins/src/float/mod.rs
+++ b/vendor/compiler_builtins/src/float/mod.rs
@@ -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.