Skip to content

Commit

Permalink
Merge pull request #7 from tbhaxor/doxygen-theme
Browse files Browse the repository at this point in the history
Fix parameters for doxygen
  • Loading branch information
tbhaxor committed Aug 20, 2023
2 parents 488eefa + d26ef2d commit 20c2b2b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions headers/firefly/vector.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class Vector {
explicit Vector(VectorType const &_vec);
/**
* @brief Copy constructor to create a new vector from an existing one.
* @param _f The source vector to copy from.
* @param _fvec The source vector to copy from.
*/
Vector(Vector const &_fvec);

Expand Down Expand Up @@ -127,7 +127,7 @@ class Vector {
* @param _scalar The scalar value to scale the vector by.
* @return New vector containing the scaled result.
*/
[[nodiscard]] Vector Scale(Real const &_fvec) const;
[[nodiscard]] Vector Scale(Real const &_scalar) const;

/**
* @brief Overloaded operator to perform vector scaling.
Expand Down

0 comments on commit 20c2b2b

Please sign in to comment.