summaryrefslogtreecommitdiff
path: root/rest/rest-proxy.c
diff options
context:
space:
mode:
authorEmmanuele Bassi <ebassi@gnome.org>2013-11-20 13:08:59 +0000
committerEmmanuele Bassi <ebassi@gnome.org>2014-03-10 16:58:42 +0000
commit218f44c0daa866a54bc6dd16b6500fb8f9338b4b (patch)
tree3e4327517c8d30ff80787a16cea0d2df2361f585 /rest/rest-proxy.c
parent1c3cba5726efb40e732e036e4ee637e7fb496b31 (diff)
downloadlibrest-218f44c0daa866a54bc6dd16b6500fb8f9338b4b.tar.gz
Fix annotations
Syntax matters. https://bugzilla.gnome.org/show_bug.cgi?id=712747
Diffstat (limited to 'rest/rest-proxy.c')
-rw-r--r--rest/rest-proxy.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/rest/rest-proxy.c b/rest/rest-proxy.c
index ce52de1..44f56bf 100644
--- a/rest/rest-proxy.c
+++ b/rest/rest-proxy.c
@@ -382,20 +382,21 @@ rest_proxy_class_init (RestProxyClass *klass)
/**
* RestProxy::authenticate:
* @proxy: the proxy
+ * @auth: authentication state
* @retrying: %TRUE if this is the second (or later) attempt
*
* Emitted when the proxy requires authentication. If
* credentials are available, set the 'username' and 'password'
- * properties on @proxy and return TRUE from the callback.
+ * properties on @proxy and return %TRUE from the callback.
* This will cause the signal emission to stop, and librest will
* try to connect with these credentials
* If these credentials fail, the signal will be
* emitted again, with @retrying set to %TRUE, which will
- * continue until FALSE is returned from the callback.
+ * continue until %FALSE is returned from the callback.
*
* If you call rest_proxy_auth_pause() on @auth before
* returning, then you can the authentication credentials on
- * the RestProxy object asynchronously. You have to make sure
+ * the #RestProxy object asynchronously. You have to make sure
* that @auth does not get destroyed with g_object_ref().
* You can then unpause the authentication with
* rest_proxy_auth_unpause() when everything is ready for it