From de895297cec25bce9398f2f52e596fdf8618403c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9rome=20Eertmans?= Date: Mon, 28 Nov 2022 10:53:42 +0100 Subject: [PATCH] fix(docs): typo in docstrings Hello, I think you misspelled `width` to `with`. --- src/float/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/float/mod.rs b/src/float/mod.rs index 01a5504d..fdbe9dde 100644 --- a/src/float/mod.rs +++ b/src/float/mod.rs @@ -26,10 +26,10 @@ pub(crate) trait Float: + ops::Div + ops::Rem { - /// 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.