diff options
author | Will Thompson <will@willthompson.co.uk> | 2012-01-31 11:25:49 +0000 |
---|---|---|
committer | Will Thompson <will.thompson@collabora.co.uk> | 2012-02-06 13:26:16 +0000 |
commit | b7310bd0535931fd9afa76b124981d23ae71207f (patch) | |
tree | 82cca29cb6f0f7494712b946487ff9c3f3a9fb97 | |
parent | bcf78e4f3de03921f72b783c1f86f18da716fa70 (diff) |
docs: use @... not @Varargs
Apparently the latter stopped being recognized by gtk-doc at some point.
:(
-rw-r--r-- | wocky/wocky-c2s-porter.c | 2 | ||||
-rw-r--r-- | wocky/wocky-node-tree.c | 2 | ||||
-rw-r--r-- | wocky/wocky-node.c | 4 | ||||
-rw-r--r-- | wocky/wocky-porter.c | 6 | ||||
-rw-r--r-- | wocky/wocky-stanza.c | 4 |
5 files changed, 9 insertions, 9 deletions
diff --git a/wocky/wocky-c2s-porter.c b/wocky/wocky-c2s-porter.c index 1bd8010..ace7739 100644 --- a/wocky/wocky-c2s-porter.c +++ b/wocky/wocky-c2s-porter.c @@ -1710,7 +1710,7 @@ wocky_c2s_porter_register_handler_from_server_by_stanza ( * the stanza (Wocky will continue to the next handler, if any), or %TRUE to * stop further processing. * @user_data: Passed to @callback. - * @Varargs: a wocky_stanza_build() specification. The handler + * @...: a wocky_stanza_build() specification. The handler * will match a stanza only if the stanza received is a superset of the one * passed to this function, as per wocky_node_is_superset(). * diff --git a/wocky/wocky-node-tree.c b/wocky/wocky-node-tree.c index 3d727d1..5d42416 100644 --- a/wocky/wocky-node-tree.c +++ b/wocky/wocky-node-tree.c @@ -143,7 +143,7 @@ wocky_node_tree_finalize (GObject *object) * wocky_node_tree_new: * @name: The name of the toplevel node * @ns: The namespace of the toplevel node - * @Varargs: the description of the node tree to build, + * @...: the description of the node tree to build, * terminated with %NULL * * Build a node-tree from a list of arguments. diff --git a/wocky/wocky-node.c b/wocky/wocky-node.c index ba11f39..073c161 100644 --- a/wocky/wocky-node.c +++ b/wocky/wocky-node.c @@ -362,7 +362,7 @@ wocky_node_set_attribute (WockyNode *node, * wocky_node_set_attributes: * @node: a #WockyNode * @key: the attribute name to set - * @Varargs: pairs of keys and values, terminated by %NULL + * @...: pairs of keys and values, terminated by %NULL * * Sets attributes in a #WockyNode to specific values. */ @@ -1346,7 +1346,7 @@ wocky_node_iter_next (WockyNodeIter *iter, /** * wocky_node_add_build: * @node: The node under which to add a new subtree - * @Varargs: the description of the stanza to build, + * @...: the description of the stanza to build, * terminated with %NULL * * Add a node subtree to an existing parent node. diff --git a/wocky/wocky-porter.c b/wocky/wocky-porter.c index 9a65b43..8d8c53d 100644 --- a/wocky/wocky-porter.c +++ b/wocky/wocky-porter.c @@ -450,7 +450,7 @@ wocky_porter_register_handler_from_by_stanza (WockyPorter *self, * the stanza (Wocky will continue to the next handler, if any), or %TRUE to * stop further processing. * @user_data: Passed to @callback. - * @Varargs: a wocky_stanza_build() specification. The handler + * @...: a wocky_stanza_build() specification. The handler * will match a stanza only if the stanza received is a superset of the one * passed to this function, as per wocky_node_is_superset(). * @@ -641,7 +641,7 @@ wocky_porter_register_handler_from_anyone_by_stanza ( * the stanza (Wocky will continue to the next handler, if any), or %TRUE to * stop further processing. * @user_data: Passed to @callback. - * @Varargs: a wocky_stanza_build() specification. The handler + * @...: a wocky_stanza_build() specification. The handler * will match a stanza only if the stanza received is a superset of the one * passed to this function, as per wocky_node_is_superset(). * @@ -843,7 +843,7 @@ wocky_porter_send_iq_finish (WockyPorter *self, * @porter: a #WockyPorter * @stanza: a stanza of type #WOCKY_STANZA_TYPE_IQ and sub-type either * #WOCKY_STANZA_SUB_TYPE_SET or #WOCKY_STANZA_SUB_TYPE_GET - * @Varargs: a wocky_stanza_build() specification; pass %NULL to include no + * @...: a wocky_stanza_build() specification; pass %NULL to include no * body in the reply. * * Sends an acknowledgement for @stanza back to the sender, as a shorthand for diff --git a/wocky/wocky-stanza.c b/wocky/wocky-stanza.c index d84e050..5b7852d 100644 --- a/wocky/wocky-stanza.c +++ b/wocky/wocky-stanza.c @@ -293,7 +293,7 @@ wocky_stanza_new_with_sub_type (WockyStanzaType type, * #WOCKY_STANZA_SUB_TYPE_SUBSCRIBED.) * @from: The sender's JID, or %NULL to leave it unspecified. * @to: The target's JID, or %NULL to leave it unspecified. - * @Varargs: the description of the stanza to build, + * @...: the description of the stanza to build, * terminated with %NULL * * Build a XMPP stanza from a list of arguments. @@ -537,7 +537,7 @@ wocky_stanza_build_iq_result_va ( * wocky_stanza_build_iq_error: * @iq: a stanza of type #WOCKY_STANZA_TYPE_IQ and sub-type either * #WOCKY_STANZA_SUB_TYPE_SET or #WOCKY_STANZA_SUB_TYPE_GET - * @Varargs: a wocky_stanza_build() specification + * @...: a wocky_stanza_build() specification * * Builds an error reply to @iq containing the given body. This function also * adds the child element of @iq to the reply, as recommended by <ulink |