From dde920aed0e7675fdc39122040f15ebde628104f Mon Sep 17 00:00:00 2001
From: patacongo
Date: Wed, 13 Jul 2011 04:09:16 +0000
Subject: [PATCH] Fix typo
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3779 42af7a65-404d-4744-a932-0658087f49c3
---
Documentation/NXGraphicsSubsystem.html | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Documentation/NXGraphicsSubsystem.html b/Documentation/NXGraphicsSubsystem.html
index e37c3b9cf2b..065f00b7a23 100644
--- a/Documentation/NXGraphicsSubsystem.html
+++ b/Documentation/NXGraphicsSubsystem.html
@@ -2347,7 +2347,7 @@ int nxtk_bitmaptoolbar(NXTKWINDOW hfwnd,
This structures provides the metrics for one glyph:
-struct nx_fontmetic_s
+struct nx_fontmetric_s
{
uint32_t stride : 2; /* Width of one font row in bytes */
uint32_t width : 6; /* Width of the font in bits */
@@ -2364,7 +2364,7 @@ struct nx_fontmetic_s
struct nx_fontbitmap_s
{
- struct nx_fontmetic_s metric; /* Character metrics */
+ struct nx_fontmetric_s metric; /* Character metrics */
FAR const uint8_t *bitmap; /* Pointer to the character bitmap */
};