@@ -32,7 +32,7 @@ namespace dynamicgraph {
32
32
template <class E >
33
33
class Setter <E, bool > : public Command {
34
34
public:
35
- // / Pointer to method that sets paramter of type bool
35
+ // / Pointer to method that sets parameter of type bool
36
36
typedef void (E::*SetterMethod) (const bool &);
37
37
// / Constructor
38
38
Setter (E& entity, SetterMethod setterMethod,
@@ -70,7 +70,7 @@ namespace dynamicgraph {
70
70
template <class E >
71
71
class Setter <E, unsigned > : public Command {
72
72
public:
73
- // / Pointer to method that sets paramter of type unsigned
73
+ // / Pointer to method that sets parameter of type unsigned
74
74
typedef void (E::*SetterMethod) (const unsigned &);
75
75
// / Constructor
76
76
Setter (E& entity, SetterMethod setterMethod,
@@ -108,7 +108,7 @@ namespace dynamicgraph {
108
108
template <class E >
109
109
class Setter <E, int > : public Command {
110
110
public:
111
- // / Pointer to method that sets paramter of type int
111
+ // / Pointer to method that sets parameter of type int
112
112
typedef void (E::*SetterMethod) (const int &);
113
113
// / Constructor
114
114
Setter (E& entity, SetterMethod setterMethod,
@@ -146,7 +146,7 @@ namespace dynamicgraph {
146
146
template <class E >
147
147
class Setter <E, float > : public Command {
148
148
public:
149
- // / Pointer to method that sets paramter of type float
149
+ // / Pointer to method that sets parameter of type float
150
150
typedef void (E::*SetterMethod) (const float &);
151
151
// / Constructor
152
152
Setter (E& entity, SetterMethod setterMethod,
@@ -184,7 +184,7 @@ namespace dynamicgraph {
184
184
template <class E >
185
185
class Setter <E, double > : public Command {
186
186
public:
187
- // / Pointer to method that sets paramter of type double
187
+ // / Pointer to method that sets parameter of type double
188
188
typedef void (E::*SetterMethod) (const double &);
189
189
// / Constructor
190
190
Setter (E& entity, SetterMethod setterMethod,
@@ -222,7 +222,7 @@ namespace dynamicgraph {
222
222
template <class E >
223
223
class Setter <E, std::string> : public Command {
224
224
public:
225
- // / Pointer to method that sets paramter of type std::string
225
+ // / Pointer to method that sets parameter of type std::string
226
226
typedef void (E::*SetterMethod) (const std::string&);
227
227
// / Constructor
228
228
Setter (E& entity, SetterMethod setterMethod,
@@ -260,7 +260,7 @@ namespace dynamicgraph {
260
260
template <class E >
261
261
class Setter <E, Vector> : public Command {
262
262
public:
263
- // / Pointer to method that sets paramter of type Vector
263
+ // / Pointer to method that sets parameter of type Vector
264
264
typedef void (E::*SetterMethod) (const Vector&);
265
265
// / Constructor
266
266
Setter (E& entity, SetterMethod setterMethod,
@@ -298,7 +298,7 @@ namespace dynamicgraph {
298
298
template <class E >
299
299
class Setter <E, Matrix> : public Command {
300
300
public:
301
- // / Pointer to method that sets paramter of type Matrix
301
+ // / Pointer to method that sets parameter of type Matrix
302
302
typedef void (E::*SetterMethod) (const Matrix&);
303
303
// / Constructor
304
304
Setter (E& entity, SetterMethod setterMethod,
0 commit comments