summaryrefslogtreecommitdiff
path: root/pango
diff options
context:
space:
mode:
authorMatthias Clasen <matthiasc@src.gnome.org>2002-03-12 00:15:07 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2002-03-12 00:15:07 +0000
commit4810649b54cc95d6926beaaa1305a4e5a205e0ce (patch)
treebbcf8498b83dd15f08f5a8d933b9b0d6f3a9259e /pango
parent13a1cc80eb461e482d8055e701756ecee9fb5da5 (diff)
downloadpango-4810649b54cc95d6926beaaa1305a4e5a205e0ce.tar.gz
Minor doc edits.
* pango/pangowin32-fontcache.c, pango/pangox-fontcache.c: Minor doc edits. * docs/tmpl/win32-fonts.sgml: Document PangoWin32FontCache. * docs/tmpl/x-fonts.sgml: Document PangoXFontCache. * docs/tmpl/glyphs.sgml: Document PangoGlyphInfo. * docs/tmpl/opentype.sgml: Document PangoOTInfo, PangoOTTag, PangoOTTableType.
Diffstat (limited to 'pango')
-rw-r--r--pango/pangowin32-fontcache.c8
-rw-r--r--pango/pangox-fontcache.c10
2 files changed, 9 insertions, 9 deletions
diff --git a/pango/pangowin32-fontcache.c b/pango/pangowin32-fontcache.c
index 9d71d738..f05d341c 100644
--- a/pango/pangowin32-fontcache.c
+++ b/pango/pangowin32-fontcache.c
@@ -66,7 +66,7 @@ free_cache_entry (LOGFONT *logfont,
* pango_win32_font_cache_free:
* @cache: a #PangoWin32FontCache
*
- * Free a #PangoWin32FontCache and all associated memory. All fonts loaded
+ * Frees a #PangoWin32FontCache and all associated memory. All fonts loaded
* through this font cache will be freed along with the cache.
**/
void
@@ -115,7 +115,7 @@ logfont_equal (gconstpointer v1,
/**
* pango_win32_font_cache_new:
*
- * Create a font cache.
+ * Creates a font cache.
*
* Return value: The new font cache. This must be freed with
* pango_win32_font_cache_free().
@@ -156,7 +156,7 @@ cache_entry_unref (PangoWin32FontCache *cache,
* @cache: a #PangoWin32FontCache
* @logfont: a pointer to a LOGFONT structure describing the font to load.
*
- * Create a #HFONT from a LOGFONT. The
+ * Creates a #HFONT from a LOGFONT. The
* result may be newly loaded, or it may have been previously
* stored
*
@@ -327,7 +327,7 @@ pango_win32_font_cache_load (PangoWin32FontCache *cache,
* @cache: a #PangoWin32FontCache
* @hfont: the HFONT to unload
*
- * Free a font structure previously loaded with pango_win32_font_cache_load()
+ * Frees a font structure previously loaded with pango_win32_font_cache_load().
**/
void
pango_win32_font_cache_unload (PangoWin32FontCache *cache,
diff --git a/pango/pangox-fontcache.c b/pango/pangox-fontcache.c
index ff606f03..b1e3ae60 100644
--- a/pango/pangox-fontcache.c
+++ b/pango/pangox-fontcache.c
@@ -64,7 +64,7 @@ free_cache_entry (char *xlfd, CacheEntry *entry, PangoXFontCache *cache)
* pango_x_font_cache_free:
* @cache: a #PangoXFontCache
*
- * Free a #PangoXFontCache and all associated memory. All fonts loaded
+ * Frees a #PangoXFontCache and all associated memory. All fonts loaded
* through this font cache will be freed along with the cache.
**/
void
@@ -84,7 +84,7 @@ pango_x_font_cache_free (PangoXFontCache *cache)
* pango_x_font_cache_new:
* @display: an X display.
*
- * Create a font cache for the specified display.
+ * Creates a font cache for the specified display.
*
* Return value: The new font cache. This must be freed with
* pango_x_font_cache_free().
@@ -128,9 +128,9 @@ cache_entry_unref (PangoXFontCache *cache, CacheEntry *entry)
* @cache: a #PangoXFontCache
* @xlfd: the X Logical Font Description to load.
*
- * Load a #XFontStruct from a X Logical Font Description. The
+ * Loads a #XFontStruct from a X Logical Font Description. The
* result may be newly loaded, or it may have been previously
- * stored
+ * stored.
*
* Return value: The font structure, or %NULL if the font could
* not be loaded. In order to free this structure, you must call
@@ -227,7 +227,7 @@ pango_x_font_cache_load (PangoXFontCache *cache,
* @cache: a #PangoXFontCache
* @fs: the font structure to unload
*
- * Free a font structure previously loaded with pango_x_font_cache_load()
+ * Frees a font structure previously loaded with pango_x_font_cache_load().
**/
void
pango_x_font_cache_unload (PangoXFontCache *cache,