Skip to content

Commit

Permalink
fix(docs): typo in docstrings
Browse files Browse the repository at this point in the history
Hello, I think you misspelled `width` to `with`.
  • Loading branch information
jeertmans authored Nov 28, 2022
1 parent d7b97a7 commit de89529
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/float/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit de89529

Please sign in to comment.