diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2024-10-06 11:06:59 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-06 11:06:59 +0200 |
| commit | dd09e9c74240fe7537cd55ddffb19b8162756a91 (patch) | |
| tree | a133993c89144290ae537cba49dbb4ff477515c6 | |
| parent | 3c4bc7d763b8a4530edfd8b2a7b68c31a238dc0b (diff) | |
| parent | 002afd1ae9c646d4120cc8e078bb329de8b3ecac (diff) | |
| download | rust-dd09e9c74240fe7537cd55ddffb19b8162756a91.tar.gz rust-dd09e9c74240fe7537cd55ddffb19b8162756a91.zip | |
Rollup merge of #131316 - programmerjake:patch-4, r=Noratrieb
Fix typo in primitive_docs.rs typo introduced in #129559
| -rw-r--r-- | library/core/src/primitive_docs.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/primitive_docs.rs b/library/core/src/primitive_docs.rs index 962da6643dd..c25501f1200 100644 --- a/library/core/src/primitive_docs.rs +++ b/library/core/src/primitive_docs.rs @@ -1251,7 +1251,7 @@ mod prim_f16 {} /// - **Unchanged NaN propagation**: The quiet bit and payload are copied from any input operand /// that is a NaN. If the inputs and outputs do not have the same size (i.e., for `as` casts), the /// same rules as for "quieting NaN propagation" apply, with one caveat: if the output is smaller -/// than the input, droppig the low-order bits may result in a payload of 0; a payload of 0 is not +/// than the input, dropping the low-order bits may result in a payload of 0; a payload of 0 is not /// possible with a signaling NaN (the all-0 significand encodes an infinity) so unchanged NaN /// propagation cannot occur with some inputs. /// - **Target-specific NaN**: The quiet bit is set and the payload is picked from a target-specific |
