Skip to content

Commit 4e7b14d

Browse files
authored
Merge pull request #37 from exMagic/master
Correct typos in documentation
2 parents 89ff45b + 5666058 commit 4e7b14d

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

docs/simplefoc_library/examples/foc_pendulum.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ PciManager.registerListener(&listenerPB);
142142
And that is it the pendulum is ready, let's setup the motor.
143143

144144
### Motor code
145-
First we need to define the `BLDCMotor` class with the number od pole pairs(`11`).
145+
First we need to define the `BLDCMotor` class with the number of pole pairs(`11`).
146146
```cpp
147147
// define BLDC motor
148148
BLDCMotor motor = BLDCMotor(11);

docs/simplefoc_library/examples/gimbal_velocity_example.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ And that is it, let's setup the motor.
9292

9393

9494
## Motor code
95-
First we need to define the `BLDCMotor` class with the number od pole pairs (`14`)
95+
First we need to define the `BLDCMotor` class with the number of pole pairs (`14`)
9696
```cpp
9797
// define BLDC motor
9898
BLDCMotor motor = BLDCMotor(14);

docs/simplefoc_library/examples/position_control_example.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ And that is it, let's setup the motor.
7070

7171

7272
## Motor code
73-
First we need to define the `BLDCMotor` class with the number od pole pairs (`11`)
73+
First we need to define the `BLDCMotor` class with the number of pole pairs (`11`)
7474
```cpp
7575
// define BLDC motor
7676
BLDCMotor motor = BLDCMotor(11);

docs/simplefoc_library/examples/position_control_example_nucleo.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ And that is it, let's setup the motor.
6868

6969

7070
## Motor code
71-
First we need to define the `BLDCMotor` class with the number od pole pairs (`11`)
71+
First we need to define the `BLDCMotor` class with the number of pole pairs (`11`)
7272
```cpp
7373
// define BLDC motor
7474
BLDCMotor motor = BLDCMotor(11);
@@ -294,4 +294,4 @@ void loop() {
294294
// user communication
295295
command.run();
296296
}
297-
```
297+
```

docs/simplefoc_library/examples/velocity_control_example.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ And that is it, let's setup the motor.
6969

7070

7171
## Motor code
72-
First we need to define the `BLDCMotor` class with the number od pole pairs (`14`)
72+
First we need to define the `BLDCMotor` class with the number of pole pairs (`14`)
7373
```cpp
7474
// define BLDC motor
7575
BLDCMotor motor = BLDCMotor(14);

0 commit comments

Comments
 (0)