diff options
author | Dan Winship <danw@gnome.org> | 2013-10-11 10:12:44 -0400 |
---|---|---|
committer | Dan Winship <danw@gnome.org> | 2013-10-11 10:16:14 -0400 |
commit | 76cc2bd9dfea0424f388bdec38702625ec303e70 (patch) | |
tree | a0ae645770d1d29e687743fd57d9e1fe654194fc /libnm-glib/nm-ip4-config.c | |
parent | 09bde40f02c2a02f9503ca0ae430753ca81c1792 (diff) | |
download | NetworkManager-76cc2bd9dfea0424f388bdec38702625ec303e70.tar.gz |
libnm-util, libnm-glib: fix up some gtk-doc comments
gtk-doc recognizes that #NMFoos is the plural of #NMFoo now, so you
don't need to put an empty comment between the type name and the "s"
to make it work. (Unfortunately, it's not smart enough to realize that
"NMIP4Addresses" is the plural of "NMIP4Address".)
Also, add some missing "#"s noticed along the way.
Diffstat (limited to 'libnm-glib/nm-ip4-config.c')
-rw-r--r-- | libnm-glib/nm-ip4-config.c | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/libnm-glib/nm-ip4-config.c b/libnm-glib/nm-ip4-config.c index ab53e382f1..e657ed1f91 100644 --- a/libnm-glib/nm-ip4-config.c +++ b/libnm-glib/nm-ip4-config.c @@ -254,7 +254,7 @@ nm_ip4_config_class_init (NMIP4ConfigClass *config_class) /** * NMIP4Config:addresses: * - * The #GPtrArray containing #NMSettingIP4Address<!-- -->es of the configuration. + * The #GPtrArray containing #NMIP4Address<!-- -->es of the configuration. **/ g_object_class_install_property (object_class, PROP_ADDRESSES, @@ -266,7 +266,7 @@ nm_ip4_config_class_init (NMIP4ConfigClass *config_class) /** * NMIP4Config:routes: * - * The #GPtrArray containing #NMSettingIP4Route<!-- -->s of the configuration. + * The #GPtrArray containing #NMSettingIP4Routes of the configuration. **/ g_object_class_install_property (object_class, PROP_ROUTES, @@ -278,7 +278,7 @@ nm_ip4_config_class_init (NMIP4ConfigClass *config_class) /** * NMIP4Config:nameservers: * - * The #GArray containing name servers (%guint32<!-- -->es) of the configuration. + * The #GArray containing name servers (#guint32s) of the configuration. **/ g_object_class_install_property (object_class, PROP_NAMESERVERS, @@ -319,7 +319,7 @@ nm_ip4_config_class_init (NMIP4ConfigClass *config_class) /** * NMIP4Config:wins-servers: * - * The #GArray containing WINS servers (%guint32<!-- -->es) of the configuration. + * The #GArray containing WINS servers (#guint32s) of the configuration. **/ g_object_class_install_property (object_class, PROP_WINS_SERVERS, @@ -391,8 +391,9 @@ nm_ip4_config_get_addresses (NMIP4Config *config) * * Gets the domain name servers (DNS). * - * Returns: (element-type guint32): the #GArray containing %guint32<!-- -->s. This is the internal copy used by the - * configuration and must not be modified. + * Returns: (element-type guint32): the #GArray containing #guint32s. + * This is the internal copy used by the configuration and must not be + * modified. **/ const GArray * nm_ip4_config_get_nameservers (NMIP4Config *config) @@ -447,8 +448,9 @@ nm_ip4_config_get_searches (NMIP4Config *config) * * Gets the Windows Internet Name Service servers (WINS). * - * Returns: (element-type guint32): the #GArray containing %guint32<!-- -->s. - * This is the internal copy used by the configuration and must not be modified. + * Returns: (element-type guint32): the #GArray containing #guint32s. + * This is the internal copy used by the configuration and must not be + * modified. **/ const GArray * nm_ip4_config_get_wins_servers (NMIP4Config *config) @@ -466,7 +468,7 @@ nm_ip4_config_get_wins_servers (NMIP4Config *config) * Gets the routes. * * Returns: (element-type NetworkManager.IP4Route): the #GSList containing - * #NMIP4Route<!-- -->s. This is the internal copy used by the configuration, + * #NMIP4Routes. This is the internal copy used by the configuration, * and must not be modified. **/ const GSList * |