aboutsummaryrefslogtreecommitdiff
path: root/embassy-rp/src/float
diff options
context:
space:
mode:
authorRonald Weber <[email protected]>2025-02-19 17:29:21 +0100
committerRonald Weber <[email protected]>2025-02-19 17:29:21 +0100
commit7a2f038800e336f4b823afca9d3eb2e70e90b1e0 (patch)
tree7c67c137b45e98d687c30ffad1a00f186cbef640 /embassy-rp/src/float
parenta1e75841f8940153ef8e0fdb38d6c8ba7322edb9 (diff)
doc: Fix "the the"
Diffstat (limited to 'embassy-rp/src/float')
-rw-r--r--embassy-rp/src/float/div.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-rp/src/float/div.rs b/embassy-rp/src/float/div.rs
index aff0dcb07..87d1e38e5 100644
--- a/embassy-rp/src/float/div.rs
+++ b/embassy-rp/src/float/div.rs
@@ -40,7 +40,7 @@ where
40 // using a wrong divisor, but we'll restore the divisor and result ourselves correctly. 40 // using a wrong divisor, but we'll restore the divisor and result ourselves correctly.
41 // This sets DIRTY, so any interruptor will save the state. 41 // This sets DIRTY, so any interruptor will save the state.
42 sio.div().udividend().write_value(dividend); 42 sio.div().udividend().write_value(dividend);
43 // If we are interrupted here, the the interruptor may start the calculation using 43 // If we are interrupted here, the interruptor may start the calculation using
44 // incorrectly signed inputs, but we'll restore the result ourselves. 44 // incorrectly signed inputs, but we'll restore the result ourselves.
45 // This sets DIRTY, so any interruptor will save the state. 45 // This sets DIRTY, so any interruptor will save the state.
46 sio.div().udivisor().write_value(divisor); 46 sio.div().udivisor().write_value(divisor);