Skip to content

Commit b24dcd7

Browse files
Rohan Budhirajaolivier-stasse
authored andcommitted
[codespell] Correct minor spelling errors
1 parent ce8618a commit b24dcd7

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ have to be available on your machine.
5858

5959
- Libraries:
6060
- [Boost][] (>= 1.40)
61-
Its detection is controled by the `BOOST_ROOT` variable, see next section
61+
Its detection is controlled by the `BOOST_ROOT` variable, see next section
6262
for more information.
6363
- [Lapack][] library
6464
Use the generic purpose `CMAKE_CXX_FLAGS` and `CMAKE_EXE_LINKER_FLAGS`

doc/additionalDoc/package.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ for a given problem. It is the basis for the stack of tasks operation.
3333
Functionality:
3434
\li Built-in scripting language* for fast prototyping and testing
3535
\li Support for extensions and modules using dynamic link libraries
36-
\li Template-based signal definition, independant
36+
\li Template-based signal definition, independent
3737
\li Type-safe connection of input and output signals
3838
\li On-demand signal computation as well as a caching system for signal values allow fast
3939
computation of signal values, which is a critical point for real-time systems\n

include/dynamic-graph/command-direct-getter.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ namespace dynamicgraph {
3838
: public Command
3939
{
4040
public:
41-
/// Pointer to method that sets paramter of type T
41+
/// Pointer to method that sets parameter of type T
4242
typedef T (E::*GetterMethod) () const;
4343

4444
/// Constructor

include/dynamic-graph/command-getter.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ namespace dynamicgraph {
5555
template <class E, typename T>
5656
class Getter : public Command {
5757
public:
58-
/// Pointer to method that sets paramter of type T
58+
/// Pointer to method that sets parameter of type T
5959
typedef T (E::*GetterMethod) () const;
6060
/// Constructor
6161
Getter(E& entity, GetterMethod getterMethod,

include/dynamic-graph/command-setter.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ namespace dynamicgraph {
5555
template <class E, typename T>
5656
class Setter : public Command {
5757
public:
58-
/// Pointer to method that sets paramter of type T
58+
/// Pointer to method that sets parameter of type T
5959
typedef void (E::*SetterMethod) (const T&);
6060
/// Constructor
6161
Setter(E& entity, SetterMethod setterMethod,

include/dynamic-graph/command-setter.t.cpp

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ namespace dynamicgraph {
3232
template <class E>
3333
class Setter<E, bool> : public Command {
3434
public:
35-
/// Pointer to method that sets paramter of type bool
35+
/// Pointer to method that sets parameter of type bool
3636
typedef void (E::*SetterMethod) (const bool&);
3737
/// Constructor
3838
Setter(E& entity, SetterMethod setterMethod,
@@ -70,7 +70,7 @@ namespace dynamicgraph {
7070
template <class E>
7171
class Setter<E, unsigned> : public Command {
7272
public:
73-
/// Pointer to method that sets paramter of type unsigned
73+
/// Pointer to method that sets parameter of type unsigned
7474
typedef void (E::*SetterMethod) (const unsigned&);
7575
/// Constructor
7676
Setter(E& entity, SetterMethod setterMethod,
@@ -108,7 +108,7 @@ namespace dynamicgraph {
108108
template <class E>
109109
class Setter<E, int> : public Command {
110110
public:
111-
/// Pointer to method that sets paramter of type int
111+
/// Pointer to method that sets parameter of type int
112112
typedef void (E::*SetterMethod) (const int&);
113113
/// Constructor
114114
Setter(E& entity, SetterMethod setterMethod,
@@ -146,7 +146,7 @@ namespace dynamicgraph {
146146
template <class E>
147147
class Setter<E, float> : public Command {
148148
public:
149-
/// Pointer to method that sets paramter of type float
149+
/// Pointer to method that sets parameter of type float
150150
typedef void (E::*SetterMethod) (const float&);
151151
/// Constructor
152152
Setter(E& entity, SetterMethod setterMethod,
@@ -184,7 +184,7 @@ namespace dynamicgraph {
184184
template <class E>
185185
class Setter<E, double> : public Command {
186186
public:
187-
/// Pointer to method that sets paramter of type double
187+
/// Pointer to method that sets parameter of type double
188188
typedef void (E::*SetterMethod) (const double&);
189189
/// Constructor
190190
Setter(E& entity, SetterMethod setterMethod,
@@ -222,7 +222,7 @@ namespace dynamicgraph {
222222
template <class E>
223223
class Setter<E, std::string> : public Command {
224224
public:
225-
/// Pointer to method that sets paramter of type std::string
225+
/// Pointer to method that sets parameter of type std::string
226226
typedef void (E::*SetterMethod) (const std::string&);
227227
/// Constructor
228228
Setter(E& entity, SetterMethod setterMethod,
@@ -260,7 +260,7 @@ namespace dynamicgraph {
260260
template <class E>
261261
class Setter<E, Vector> : public Command {
262262
public:
263-
/// Pointer to method that sets paramter of type Vector
263+
/// Pointer to method that sets parameter of type Vector
264264
typedef void (E::*SetterMethod) (const Vector&);
265265
/// Constructor
266266
Setter(E& entity, SetterMethod setterMethod,
@@ -298,7 +298,7 @@ namespace dynamicgraph {
298298
template <class E>
299299
class Setter<E, Matrix> : public Command {
300300
public:
301-
/// Pointer to method that sets paramter of type Matrix
301+
/// Pointer to method that sets parameter of type Matrix
302302
typedef void (E::*SetterMethod) (const Matrix&);
303303
/// Constructor
304304
Setter(E& entity, SetterMethod setterMethod,

0 commit comments

Comments
 (0)