STYLE: fix comment

This commit is contained in:
Mark Olesen
2019-03-21 09:49:56 +01:00
committed by Andrew Heather
parent f679ab4300
commit a48dc227d4

View File

@ -74,7 +74,7 @@ public:
//- Bits used for (x/y/z) direction encoding. //- Bits used for (x/y/z) direction encoding.
enum directionBit : direction enum directionBit : direction
{ {
XDIR = 0x1, //!< 0: x-direction (vector component 0) XDIR = 0x1, //!< 1: x-direction (vector component 0)
YDIR = 0x2, //!< 2: y-direction (vector component 1) YDIR = 0x2, //!< 2: y-direction (vector component 1)
ZDIR = 0x4 //!< 4: z-direction (vector component 2) ZDIR = 0x4 //!< 4: z-direction (vector component 2)
}; };