Skip to content

Commit bc7ca1d

Browse files
authored
Fix a few typos (#186)
1 parent 07eb95e commit bc7ca1d

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ against this Rust version.
99

1010
### 1.16.0 (2022-12-05)
1111
- [added] `const INT` field to the `ToInt` trait.
12-
- [added] `const-generics` field with `U<N>` mapping wher `N` is a const generic.
12+
- [added] `const-generics` field with `U<N>` mapping where `N` is a const generic.
1313

1414
### 1.15.0 (2021-12-25)
1515
- [fixed] Cross-compilation issue due to doing math in build script. (PR #177)
@@ -62,7 +62,7 @@ against this Rust version.
6262
- [added] Associated constants for `Bit`, `Unsigned`, and `Integer`.
6363

6464
### 1.9.0 (2017-05-14)
65-
- [added] The `Abs` type operater and corresponding `AbsVal` alias.
65+
- [added] The `Abs` type operator and corresponding `AbsVal` alias.
6666
- [added] The feature `i128` that enables creating 128-bit integers from
6767
typenums.
6868
- [added] The `assert_type!` and `assert_type_eq!` macros.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ While `typenum` is divided into several modules, they are all re-exported
1717
through the crate root, so you can import anything contained herein with `use
1818
typenum::whatever;`, ignoring the crate structure.
1919

20-
You may also find it useful to treat the `consts` module as a prelude, perfoming
21-
a glob import.
20+
You may also find it useful to treat the `consts` module as a prelude,
21+
performing a glob import.
2222

2323
### Example
2424

src/uint.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1163,7 +1163,7 @@ where
11631163
}
11641164

11651165
/// Comparing non-terimal bits, with both having bit `B0`.
1166-
/// These are `Equal`, so we propogate `SoFar`.
1166+
/// These are `Equal`, so we propagate `SoFar`.
11671167
impl<Ul, Ur, SoFar> PrivateCmp<UInt<Ur, B0>, SoFar> for UInt<Ul, B0>
11681168
where
11691169
Ul: Unsigned,
@@ -1180,7 +1180,7 @@ where
11801180
}
11811181

11821182
/// Comparing non-terimal bits, with both having bit `B1`.
1183-
/// These are `Equal`, so we propogate `SoFar`.
1183+
/// These are `Equal`, so we propagate `SoFar`.
11841184
impl<Ul, Ur, SoFar> PrivateCmp<UInt<Ur, B1>, SoFar> for UInt<Ul, B1>
11851185
where
11861186
Ul: Unsigned,

0 commit comments

Comments
 (0)