diff --git a/subprojects/gst-rtsp-server/gst/rtsp-server/rtsp-token.c b/subprojects/gst-rtsp-server/gst/rtsp-server/rtsp-token.c index 4062d30c06..22f96c60e9 100644 --- a/subprojects/gst-rtsp-server/gst/rtsp-server/rtsp-token.c +++ b/subprojects/gst-rtsp-server/gst/rtsp-server/rtsp-token.c @@ -239,14 +239,14 @@ gst_rtsp_token_get_structure (GstRTSPToken * token) /** * gst_rtsp_token_writable_structure: - * @token: The #GstRTSPToken. + * @token: A writable #GstRTSPToken. * * Get a writable version of the structure. * * Returns: (transfer none): The structure of the token. The structure is still * owned by the token, which means that you should not free it and that the - * pointer becomes invalid when you free the token. This function checks if - * @token is writable and will never return %NULL. + * pointer becomes invalid when you free the token. This function ensures + * that @token is writable, and if so, will never return %NULL. * * MT safe. */ diff --git a/subprojects/gstreamer/gst/gstevent.c b/subprojects/gstreamer/gst/gstevent.c index c5bf474737..610037b7c6 100644 --- a/subprojects/gstreamer/gst/gstevent.c +++ b/subprojects/gstreamer/gst/gstevent.c @@ -354,15 +354,15 @@ gst_event_get_structure (GstEvent * event) /** * gst_event_writable_structure: - * @event: The #GstEvent. + * @event: A writable #GstEvent. * * Get a writable version of the structure. * * Returns: (transfer none): The structure of the event. The structure * is still owned by the event, which means that you should not free * it and that the pointer becomes invalid when you free the event. - * This function checks if @event is writable and will never return - * %NULL. + * This function ensures that @event is writable, and if so, will + * never return %NULL. * * MT safe. */ diff --git a/subprojects/gstreamer/gst/gstmessage.c b/subprojects/gstreamer/gst/gstmessage.c index 4e6f2be274..adfd8ed3a0 100644 --- a/subprojects/gstreamer/gst/gstmessage.c +++ b/subprojects/gstreamer/gst/gstmessage.c @@ -1166,15 +1166,15 @@ gst_message_get_structure (GstMessage * message) /** * gst_message_writable_structure: - * @message: The #GstMessage. + * @message: A writable #GstMessage. * * Get a writable version of the structure. * * Returns: (transfer none): The structure of the message. The structure * is still owned by the message, which means that you should not free * it and that the pointer becomes invalid when you free the message. - * This function checks if @message is writable and will never return - * %NULL. + * This function ensures that @message is writable, and if so, will + * never return %NULL. * * MT safe. *