Skip to content

Commit

Permalink
touch up CAngle comment
Browse files Browse the repository at this point in the history
  • Loading branch information
SizzinSeal committed Dec 29, 2024
1 parent ce0bd31 commit c0d05e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/units/Angle.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ template <> struct LookupName<Quantity<std::ratio<0>, std::ratio<0>, std::ratio<
* This class solves this problem by introducing the CAngle type. You can do things like
* negate it, multiply it, etc. without messing up the angle. However, this class can
* only be created through string literals, you can't do something like
* CAngle angle = 2_cDeg
* CAngle angle = 2_cDeg;
* because the constructor is private. However, you can do
* Angle angle = 2_cDeg
* Angle angle = 2_cDeg;
*/
class CAngle {
// make string literals friends, so they have access to the constructor
Expand Down

0 comments on commit c0d05e0

Please sign in to comment.