Skip to content

Commit 0045466

Browse files
Remove double spaces in comments
1 parent 066d4a6 commit 0045466

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

Fusion/Fusion.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @file Fusion.h
33
* @author Seb Madgwick
4-
* @brief Main header file for the Fusion library. This is the only file that
4+
* @brief Main header file for the Fusion library. This is the only file that
55
* needs to be included when using the library.
66
*/
77

Fusion/FusionAhrs.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ void FusionAhrsInitialise(FusionAhrs *const ahrs) {
5757
}
5858

5959
/**
60-
* @brief Resets the AHRS algorithm. This is equivalent to reinitialising the
60+
* @brief Resets the AHRS algorithm. This is equivalent to reinitialising the
6161
* algorithm while maintaining the current settings.
6262
* @param ahrs AHRS algorithm structure.
6363
*/
@@ -487,7 +487,7 @@ FusionAhrsFlags FusionAhrsGetFlags(const FusionAhrs *const ahrs) {
487487

488488
/**
489489
* @brief Sets the heading of the orientation measurement provided by the AHRS
490-
* algorithm. This function can be used to reset drift in heading when the AHRS
490+
* algorithm. This function can be used to reset drift in heading when the AHRS
491491
* algorithm is being used without a magnetometer.
492492
* @param ahrs AHRS algorithm structure.
493493
* @param heading Heading angle in degrees.

Fusion/FusionAhrs.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ typedef struct {
3131
} FusionAhrsSettings;
3232

3333
/**
34-
* @brief AHRS algorithm structure. Structure members are used internally and
34+
* @brief AHRS algorithm structure. Structure members are used internally and
3535
* must not be accessed by the application.
3636
*/
3737
typedef struct {

Fusion/FusionMath.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ typedef union {
6565
} FusionMatrix;
6666

6767
/**
68-
* @brief Euler angles. Roll, pitch, and yaw correspond to rotations around
68+
* @brief Euler angles. Roll, pitch, and yaw correspond to rotations around
6969
* X, Y, and Z respectively.
7070
*/
7171
typedef union {
@@ -362,9 +362,9 @@ static inline FusionQuaternion FusionQuaternionMultiply(const FusionQuaternion q
362362
}
363363

364364
/**
365-
* @brief Returns the multiplication of a quaternion with a vector. This is a
365+
* @brief Returns the multiplication of a quaternion with a vector. This is a
366366
* normal quaternion multiplication where the vector is treated a
367-
* quaternion with a W element value of zero. The quaternion is post-
367+
* quaternion with a W element value of zero. The quaternion is post-
368368
* multiplied by the vector.
369369
* @param quaternion Quaternion.
370370
* @param vector Vector.

Fusion/FusionOffset.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
// Definitions
1818

1919
/**
20-
* @brief Gyroscope offset algorithm structure. Structure members are used
20+
* @brief Gyroscope offset algorithm structure. Structure members are used
2121
* internally and must not be accessed by the application.
2222
*/
2323
typedef struct {

0 commit comments

Comments
 (0)