diff options
author | Behdad Esfahbod <behdad@src.gnome.org> | 2007-01-07 05:49:53 +0000 |
---|---|---|
committer | Behdad Esfahbod <behdad@src.gnome.org> | 2007-01-07 05:49:53 +0000 |
commit | eed4bfd92100d915d9d2f8e7c2d7ecac659a688a (patch) | |
tree | c9fc4aba099ee71d57d3f87f9b7af1abd5bce54b /pango/pango-glyph-item.c | |
parent | 59d1e39f888107431975300e2b6b2452ff737f45 (diff) | |
download | pango-eed4bfd92100d915d9d2f8e7c2d7ecac659a688a.tar.gz |
Spell-check the docs.
svn path=/trunk/; revision=2130
Diffstat (limited to 'pango/pango-glyph-item.c')
-rw-r--r-- | pango/pango-glyph-item.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/pango/pango-glyph-item.c b/pango/pango-glyph-item.c index 29216101..65069193 100644 --- a/pango/pango-glyph-item.c +++ b/pango/pango-glyph-item.c @@ -235,7 +235,7 @@ _pango_glyph_item_iter_next_cluster (PangoGlyphItemIter *iter) * * Moves the iterator to the preceding cluster in the glyph item. * - * Return value: %TRUE if the iterator was movedn, %FALSE if we were already on the + * Return value: %TRUE if the iterator was moved, %FALSE if we were already on the * first cluster. **/ gboolean @@ -313,14 +313,14 @@ _pango_glyph_item_iter_prev_cluster (PangoGlyphItemIter *iter) /** * _pango_glyph_item_iter_init_start: * @iter: pointer to a #PangoGlyphItemIter structure - * @glyph_item: the glyph item that the iter points into + * @glyph_item: the glyph item that @iter points into * @text: text corresponding to the glyph item * * Initializes a #PangoGlyphItemIter structure to point to the * first cluster in a glyph item. * * Return value: %FALSE if there are no clusters in the glyph item; - * in this case, the state of the iter is undefined. + * in this case, the state of @iter is undefined. **/ gboolean _pango_glyph_item_iter_init_start (PangoGlyphItemIter *iter, @@ -345,14 +345,14 @@ _pango_glyph_item_iter_init_start (PangoGlyphItemIter *iter, /** * _pango_glyph_item_iter_init_end: * @iter: pointer to a #PangoGlyphItemIter structure - * @glyph_item: the glyph item that the iter points into + * @glyph_item: the glyph item that @iter points into * @text: text corresponding to the glyph item * * Initializes a #PangoGlyphItemIter structure to point to the * last cluster in a glyph item. * * Return value: %FALSE if there are no clusters in the glyph item; - * in this case, the state of the iter is undefined. + * in this case, the state of @iter is undefined. **/ gboolean _pango_glyph_item_iter_init_end (PangoGlyphItemIter *iter, @@ -391,7 +391,7 @@ append_attrs (PangoGlyphItem *glyph_item, g_slist_concat (glyph_item->item->analysis.extra_attrs, attrs); } -/* Make a deep copy of a GSlist of PangoAttribute +/* Make a deep copy of a #GSList of PangoAttribute */ static GSList * attr_slist_copy (GSList *attrs) @@ -447,7 +447,7 @@ split_before_cluster_start (ApplyAttrsState *state) * * All attributes that start or end inside a cluster are applied * to that cluster; for instance, if half of a cluster is underlined - * and the other-half strikethough, then the cluster will end + * and the other-half strikethrough, then the cluster will end * up with both underline and strikethrough attributes. In these * cases, it may happen that item->extra_attrs for some of the * result items can have multiple attributes of the same type. |