Skip to content

Commit c593a0c

Browse files
committed
Revert previous find-replace accidents
1 parent 7190b1a commit c593a0c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/pwm.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,12 @@
6565
ch4.enable();
6666
```
6767
68-
All three pins will output a 50hz period. gpioa::PA6 and PB4 will share a
68+
All three pins will output a 50hz period. PA6 and PB4 will share a
6969
duty cycle, but the duty cycle for PB1 can be controlled
7070
independently.
7171
7272
```
73-
// Affect gpioa::PA6 and PB4
73+
// Affect PA6 and PB4
7474
ch1.set_duty_cycle(1000);
7575
7676
// Affect only PB1
@@ -146,9 +146,9 @@
146146
.output_to(pa8);
147147
```
148148
149-
Once we've connected a complementary pin (gpioa::PA7) we are now _only_
150-
allowed to use other complementary pins. gpioa::PA8 is a valid choice if
151-
we have no pins in use, but it cannot be used once we've used gpioa::PA7.
149+
Once we've connected a complementary pin (PA7) we are now _only_
150+
allowed to use other complementary pins. PA8 is a valid choice if
151+
we have no pins in use, but it cannot be used once we've used PA7.
152152
*/
153153

154154
use crate::{

0 commit comments

Comments
 (0)