summaryrefslogtreecommitdiff
path: root/libsoup/server/soup-server-message.c
diff options
context:
space:
mode:
authorCarlos Garcia Campos <cgarcia@igalia.com>2021-02-11 17:08:08 +0100
committerCarlos Garcia Campos <cgarcia@igalia.com>2021-02-11 17:08:08 +0100
commit9e8975c2f23e686f7cec908db9cff1f023193311 (patch)
tree86a5cb51559f24d611c99cafdb9612962de58abd /libsoup/server/soup-server-message.c
parent12d51c260db8d0332ec07a2fdb84f077f3c64257 (diff)
downloadlibsoup-9e8975c2f23e686f7cec908db9cff1f023193311.tar.gz
docs: use Returns instead of Return value in documentation
Diffstat (limited to 'libsoup/server/soup-server-message.c')
-rw-r--r--libsoup/server/soup-server-message.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libsoup/server/soup-server-message.c b/libsoup/server/soup-server-message.c
index bb9a6385..40f92c7e 100644
--- a/libsoup/server/soup-server-message.c
+++ b/libsoup/server/soup-server-message.c
@@ -786,7 +786,7 @@ soup_server_message_set_redirect (SoupServerMessage *msg,
* not get fooled when the allocator reuses the memory address of a
* previously-destroyed socket to represent a new socket.
*
- * Return value: (nullable) (transfer none): the #GSocket that @msg is
+ * Returns: (nullable) (transfer none): the #GSocket that @msg is
* associated with, %NULL if you used soup_server_accept_iostream().
*/
GSocket *
@@ -804,7 +804,7 @@ soup_server_message_get_socket (SoupServerMessage *msg)
* Retrieves the #GSocketAddress associated with the remote end
* of a connection.
*
- * Return value: (nullable) (transfer none): the #GSocketAddress
+ * Returns: (nullable) (transfer none): the #GSocketAddress
* associated with the remote end of a connection, it may be
* %NULL if you used soup_server_accept_iostream().
*/
@@ -830,7 +830,7 @@ soup_server_message_get_remote_address (SoupServerMessage *msg)
* Retrieves the #GSocketAddress associated with the local end
* of a connection.
*
- * Return value: (nullable) (transfer none): the #GSocketAddress
+ * Returns: (nullable) (transfer none): the #GSocketAddress
* associated with the local end of a connection, it may be
* %NULL if you used soup_server_accept_iostream().
*/
@@ -856,7 +856,7 @@ soup_server_message_get_local_address (SoupServerMessage *msg)
* Retrieves the IP address associated with the remote end of a
* connection.
*
- * Return value: (nullable): the IP address associated with the remote
+ * Returns: (nullable): the IP address associated with the remote
* end of a connection, it may be %NULL if you used
* soup_server_accept_iostream().
*/
@@ -899,7 +899,7 @@ soup_server_message_get_remote_host (SoupServerMessage *msg)
* Note that when calling this function from C, @msg will most
* likely be freed as a side effect.
*
- * Return value: (transfer full): the #GIOStream formerly associated
+ * Returns: (transfer full): the #GIOStream formerly associated
* with @msg (or %NULL if @msg was no longer associated with a
* connection). No guarantees are made about what kind of #GIOStream
* is returned.