Skip to content
This repository has been archived by the owner on Jan 23, 2024. It is now read-only.

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
jaagut committed Oct 19, 2023
1 parent edafe31 commit 8420b72
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bitbots_splines/include/bitbots_splines/polynom.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ namespace bitbots_splines {
/**
* Polynom
*
* Simple one dimentional
* Simple one dimensional
* polynom class for spline
* generation
*/
class Polynom {
public:

/**
* Default and inital degree initialization
* Default and initial degree initialization
*/
Polynom();
explicit Polynom(unsigned int degree);
Expand Down Expand Up @@ -73,7 +73,7 @@ class Polynom {
private:

/**
* Polynom coeficients
* Polynom coefficients
*/
std::vector<double> coefs_;
};
Expand Down

0 comments on commit 8420b72

Please sign in to comment.