Skip to content

Commit c0d05e0

Browse files
committed
touch up CAngle comment
1 parent ce0bd31 commit c0d05e0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/units/Angle.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ template <> struct LookupName<Quantity<std::ratio<0>, std::ratio<0>, std::ratio<
3737
* This class solves this problem by introducing the CAngle type. You can do things like
3838
* negate it, multiply it, etc. without messing up the angle. However, this class can
3939
* only be created through string literals, you can't do something like
40-
* CAngle angle = 2_cDeg
40+
* CAngle angle = 2_cDeg;
4141
* because the constructor is private. However, you can do
42-
* Angle angle = 2_cDeg
42+
* Angle angle = 2_cDeg;
4343
*/
4444
class CAngle {
4545
// make string literals friends, so they have access to the constructor

0 commit comments

Comments
 (0)