diff --git a/dgl/Color.hpp b/dgl/Color.hpp index b87ce481..c79995ed 100644 --- a/dgl/Color.hpp +++ b/dgl/Color.hpp @@ -32,7 +32,7 @@ START_NAMESPACE_DGL */ struct Color { /** - Direct access to the color value. + Direct access to the color values. */ union { float rgba[4]; @@ -74,7 +74,7 @@ struct Color { static Color HSL(const float hue, const float saturation, const float lightness, const uchar alpha = 255); /** - Linearly interpolate this color against @a other. + Linearly interpolate this color against another. */ void interpolate(const Color& other, const float u) noexcept; diff --git a/dgl/NanoVG.hpp b/dgl/NanoVG.hpp index 8109e460..37ecea3e 100644 --- a/dgl/NanoVG.hpp +++ b/dgl/NanoVG.hpp @@ -221,7 +221,7 @@ public: Paint() noexcept; - /** + /** @internal */ Paint(const NVGpaint&) noexcept; @@ -410,7 +410,7 @@ public: static void transformIdentity(float dst[6]); /** - Sets the transform to translation matrix matrix. + Sets the transform to translation matrix */ static void transformTranslate(float dst[6], float tx, float ty); @@ -751,7 +751,7 @@ protected: private: /** Widget display function. - Implemented internally to wrap begin/endFrame() automaticaly. + Implemented internally to wrap begin/endFrame() automatically. */ void onDisplay() override {