commit 410225951712dc16b3e50bea32f5f3dcf837ccc4
parent cd2873761758c07a9bf18cd536d12074ce061df3
Author: falkTX <falktx@gmail.com>
Date: Sat, 16 Aug 2014 04:03:27 +0100
Fix typos
Diffstat:
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git 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
@@ -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
{