Skip to content
Snippets Groups Projects
Commit b24dcd73 authored by Rohan Budhiraja's avatar Rohan Budhiraja Committed by Olivier Stasse
Browse files

[codespell] Correct minor spelling errors

parent ce8618a7
No related branches found
No related tags found
No related merge requests found
......@@ -58,7 +58,7 @@ have to be available on your machine.
- Libraries:
- [Boost][] (>= 1.40)
Its detection is controled by the `BOOST_ROOT` variable, see next section
Its detection is controlled by the `BOOST_ROOT` variable, see next section
for more information.
- [Lapack][] library
Use the generic purpose `CMAKE_CXX_FLAGS` and `CMAKE_EXE_LINKER_FLAGS`
......
......@@ -33,7 +33,7 @@ for a given problem. It is the basis for the stack of tasks operation.
Functionality:
\li Built-in scripting language* for fast prototyping and testing
\li Support for extensions and modules using dynamic link libraries
\li Template-based signal definition, independant
\li Template-based signal definition, independent
\li Type-safe connection of input and output signals
\li On-demand signal computation as well as a caching system for signal values allow fast
computation of signal values, which is a critical point for real-time systems\n
......
......@@ -38,7 +38,7 @@ namespace dynamicgraph {
: public Command
{
public:
/// Pointer to method that sets paramter of type T
/// Pointer to method that sets parameter of type T
typedef T (E::*GetterMethod) () const;
/// Constructor
......
......@@ -55,7 +55,7 @@ namespace dynamicgraph {
template <class E, typename T>
class Getter : public Command {
public:
/// Pointer to method that sets paramter of type T
/// Pointer to method that sets parameter of type T
typedef T (E::*GetterMethod) () const;
/// Constructor
Getter(E& entity, GetterMethod getterMethod,
......
......@@ -55,7 +55,7 @@ namespace dynamicgraph {
template <class E, typename T>
class Setter : public Command {
public:
/// Pointer to method that sets paramter of type T
/// Pointer to method that sets parameter of type T
typedef void (E::*SetterMethod) (const T&);
/// Constructor
Setter(E& entity, SetterMethod setterMethod,
......
......@@ -32,7 +32,7 @@ namespace dynamicgraph {
template <class E>
class Setter<E, bool> : public Command {
public:
/// Pointer to method that sets paramter of type bool
/// Pointer to method that sets parameter of type bool
typedef void (E::*SetterMethod) (const bool&);
/// Constructor
Setter(E& entity, SetterMethod setterMethod,
......@@ -70,7 +70,7 @@ namespace dynamicgraph {
template <class E>
class Setter<E, unsigned> : public Command {
public:
/// Pointer to method that sets paramter of type unsigned
/// Pointer to method that sets parameter of type unsigned
typedef void (E::*SetterMethod) (const unsigned&);
/// Constructor
Setter(E& entity, SetterMethod setterMethod,
......@@ -108,7 +108,7 @@ namespace dynamicgraph {
template <class E>
class Setter<E, int> : public Command {
public:
/// Pointer to method that sets paramter of type int
/// Pointer to method that sets parameter of type int
typedef void (E::*SetterMethod) (const int&);
/// Constructor
Setter(E& entity, SetterMethod setterMethod,
......@@ -146,7 +146,7 @@ namespace dynamicgraph {
template <class E>
class Setter<E, float> : public Command {
public:
/// Pointer to method that sets paramter of type float
/// Pointer to method that sets parameter of type float
typedef void (E::*SetterMethod) (const float&);
/// Constructor
Setter(E& entity, SetterMethod setterMethod,
......@@ -184,7 +184,7 @@ namespace dynamicgraph {
template <class E>
class Setter<E, double> : public Command {
public:
/// Pointer to method that sets paramter of type double
/// Pointer to method that sets parameter of type double
typedef void (E::*SetterMethod) (const double&);
/// Constructor
Setter(E& entity, SetterMethod setterMethod,
......@@ -222,7 +222,7 @@ namespace dynamicgraph {
template <class E>
class Setter<E, std::string> : public Command {
public:
/// Pointer to method that sets paramter of type std::string
/// Pointer to method that sets parameter of type std::string
typedef void (E::*SetterMethod) (const std::string&);
/// Constructor
Setter(E& entity, SetterMethod setterMethod,
......@@ -260,7 +260,7 @@ namespace dynamicgraph {
template <class E>
class Setter<E, Vector> : public Command {
public:
/// Pointer to method that sets paramter of type Vector
/// Pointer to method that sets parameter of type Vector
typedef void (E::*SetterMethod) (const Vector&);
/// Constructor
Setter(E& entity, SetterMethod setterMethod,
......@@ -298,7 +298,7 @@ namespace dynamicgraph {
template <class E>
class Setter<E, Matrix> : public Command {
public:
/// Pointer to method that sets paramter of type Matrix
/// Pointer to method that sets parameter of type Matrix
typedef void (E::*SetterMethod) (const Matrix&);
/// Constructor
Setter(E& entity, SetterMethod setterMethod,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment