@@ -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