diff options
author | Dan Winship <danw@gnome.org> | 2014-06-05 15:11:04 -0400 |
---|---|---|
committer | Dan Winship <danw@gnome.org> | 2014-06-19 17:45:02 -0400 |
commit | e8577083cafdf0a164679db11ca9193605e4fffe (patch) | |
tree | 7af390b3b1403b1a0de71e0ff3883135dc7e2ec5 /libnm-util/nm-setting-ppp.c | |
parent | 9de24b16e83ca27322c09cde50648d7834820778 (diff) | |
download | NetworkManager-e8577083cafdf0a164679db11ca9193605e4fffe.tar.gz |
libnm-util: various NMSetting* property doc fixes/improvements
Fix up various issues with the docs for the NMSetting properties, and
pull in text from the GParamSpec docs where the GParamSpec docs were
better (or contained information that is necessary in the context of
nm-settings.5).
Also, consistently wrap all of the doc comments to the same width (80
columns).
Diffstat (limited to 'libnm-util/nm-setting-ppp.c')
-rw-r--r-- | libnm-util/nm-setting-ppp.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/libnm-util/nm-setting-ppp.c b/libnm-util/nm-setting-ppp.c index 4a5a14e6f8..237af9c89d 100644 --- a/libnm-util/nm-setting-ppp.c +++ b/libnm-util/nm-setting-ppp.c @@ -567,8 +567,8 @@ nm_setting_ppp_class_init (NMSettingPPPClass *setting_class) * NMSettingPPP:noauth: * * If %TRUE, do not require the other side (usually the PPP server) to - * authenticate itself to the client. If %FALSE, require authentication from - * the remote side. In almost all cases, this should be %TRUE. + * authenticate itself to the client. If %FALSE, require authentication + * from the remote side. In almost all cases, this should be %TRUE. **/ g_object_class_install_property (object_class, PROP_NOAUTH, @@ -662,7 +662,7 @@ nm_setting_ppp_class_init (NMSettingPPPClass *setting_class) /** * NMSettingPPP:nodeflate: * - * If %TRUE, 'deflate' compression will not be requested. + * If %TRUE, "deflate" compression will not be requested. **/ g_object_class_install_property (object_class, PROP_NODEFLATE, @@ -709,7 +709,7 @@ nm_setting_ppp_class_init (NMSettingPPPClass *setting_class) * NMSettingPPP:require-mppe-128: * * If %TRUE, 128-bit MPPE (Microsoft Point-to-Point Encrpytion) will be - * required for the PPP session, and the 'require-mppe' property must also + * required for the PPP session, and the "require-mppe" property must also * be set to %TRUE. If 128-bit MPPE is not available the session will fail. **/ g_object_class_install_property @@ -743,8 +743,8 @@ nm_setting_ppp_class_init (NMSettingPPPClass *setting_class) * NMSettingPPP:crtscts: * * If %TRUE, specify that pppd should set the serial port to use hardware - * flow control with RTS and CTS signals. This value should normally be - * set to %FALSE. + * flow control with RTS and CTS signals. This value should normally be set + * to %FALSE. **/ g_object_class_install_property (object_class, PROP_CRTSCTS, @@ -811,7 +811,7 @@ nm_setting_ppp_class_init (NMSettingPPPClass *setting_class) * * If non-zero, instruct pppd to presume the connection to the peer has * failed if the specified number of LCP echo-requests go unanswered by the - * peer. The 'lcp-echo-interval' property must also be set to a non-zero + * peer. The "lcp-echo-interval" property must also be set to a non-zero * value if this property is used. **/ g_object_class_install_property |