summaryrefslogtreecommitdiff
path: root/docs/reference/gobject/tut_howto.xml
diff options
context:
space:
mode:
authorMohammed Sadiq <sadiq@sadiqpk.org>2018-04-10 20:01:40 +0530
committerMohammed Sadiq <sadiq@sadiqpk.org>2018-04-10 20:01:40 +0530
commitabf28c71b076568ccb9e35972c433e8154e53310 (patch)
tree7c927fb0e07eb281ccad777a8e2e7cc9f8442b7c /docs/reference/gobject/tut_howto.xml
parenta9ad793506afa2704b31dc0d8701bada20a699f5 (diff)
downloadglib-abf28c71b076568ccb9e35972c433e8154e53310.tar.gz
docs: Fix typo in examples
Diffstat (limited to 'docs/reference/gobject/tut_howto.xml')
-rw-r--r--docs/reference/gobject/tut_howto.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/reference/gobject/tut_howto.xml b/docs/reference/gobject/tut_howto.xml
index 01391a970..0e119009b 100644
--- a/docs/reference/gobject/tut_howto.xml
+++ b/docs/reference/gobject/tut_howto.xml
@@ -357,7 +357,7 @@ viewer_file_class_init (ViewerFileClass *klass)
"Filename",
"Name of the file to load and display from.",
NULL /* default value */,
- G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE));
+ G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE);
obj_properties[PROP_ZOOM_LEVEL] =
g_param_spec_uint ("zoom-level",
@@ -366,7 +366,7 @@ viewer_file_class_init (ViewerFileClass *klass)
0 /* minimum value */,
10 /* maximum value */,
2 /* default value */,
- G_PARAM_READWRITE));
+ G_PARAM_READWRITE);
g_object_class_install_properties (object_class,
N_PROPERTIES,