[gtksourceview] doc: small fixes



commit 6f96734bf6f84b2b5e2edbaf2ec0552dde393bde
Author: Sébastien Wilmet <swilmet gnome org>
Date:   Sun Mar 9 18:22:59 2014 +0100

    doc: small fixes

 gtksourceview/gtksourceview.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/gtksourceview/gtksourceview.c b/gtksourceview/gtksourceview.c
index bd10073..246be1e 100644
--- a/gtksourceview/gtksourceview.c
+++ b/gtksourceview/gtksourceview.c
@@ -339,7 +339,7 @@ gtk_source_view_class_init (GtkSourceViewClass *klass)
        /**
         * GtkSourceView:tab-width:
         *
-        * Width of an tab character expressed in number of spaces.
+        * Width of a tab character expressed in number of spaces.
         */
        g_object_class_install_property (object_class,
                                         PROP_TAB_WIDTH,
@@ -2829,12 +2829,12 @@ gtk_source_view_get_tab_width (GtkSourceView *view)
  * @width: indent width in characters.
  *
  * Sets the number of spaces to use for each step of indent.
- * If @width is -1, the value of the GtkSourceView::tab-width property
+ * If @width is -1, the value of the #GtkSourceView:tab-width property
  * will be used.
  */
 void
 gtk_source_view_set_indent_width (GtkSourceView *view,
-                                 gint          width)
+                                 gint           width)
 {
        g_return_if_fail (GTK_SOURCE_VIEW (view));
        g_return_if_fail ((width == -1) || (width > 0 && width <= MAX_INDENT_WIDTH));


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]