diff options
author | William Jon McCann <william.jon.mccann@gmail.com> | 2014-02-05 13:07:34 -0500 |
---|---|---|
committer | William Jon McCann <william.jon.mccann@gmail.com> | 2014-02-05 15:08:42 -0500 |
commit | 2a45418b673d10f60e9334ebcfa493f125d26e02 (patch) | |
tree | bd459a39a8aae3ade27524b5e1199eb38d972c25 /gtk/gtktreestore.c | |
parent | c3dfb17031842458e86907e8c1d3a1ca4c442a8c (diff) | |
download | gtk+-2a45418b673d10f60e9334ebcfa493f125d26e02.tar.gz |
docs: use proper quotes
Diffstat (limited to 'gtk/gtktreestore.c')
-rw-r--r-- | gtk/gtktreestore.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtktreestore.c b/gtk/gtktreestore.c index a1aa611809..6b346ca80b 100644 --- a/gtk/gtktreestore.c +++ b/gtk/gtktreestore.c @@ -46,7 +46,7 @@ * The GtkTreeStore implementation of the #GtkBuildable interface allows * to specify the model columns with a <columns> element that may * contain multiple <column> elements, each specifying one model - * column. The "type" attribute specifies the data type for the column. + * column. The “type” attribute specifies the data type for the column. * * An example of a UI Definition fragment for a tree store: * |[ @@ -495,7 +495,7 @@ gtk_tree_store_finalize (GObject *object) /* fulfill the GtkTreeModel requirements */ /* NOTE: GtkTreeStore::root is a GNode, that acts as the parent node. However, - * it is not visible to the tree or to the user., and the path "0" refers to the + * it is not visible to the tree or to the user., and the path “0” refers to the * first child of GtkTreeStore::root. */ @@ -1169,7 +1169,7 @@ gtk_tree_store_set_valist (GtkTreeStore *tree_store, * The variable argument list should contain integer column numbers, * each column number followed by the value to be set. * The list is terminated by a -1. For example, to set column 0 with type - * %G_TYPE_STRING to "Foo", you would write + * %G_TYPE_STRING to “Foo”, you would write * `gtk_tree_store_set (store, iter, 0, "Foo", -1)`. * * The value will be referenced by the store if it is a %G_TYPE_OBJECT, and it |