From: Cheoleun Moon Date: Tue, 22 Oct 2019 09:01:17 +0000 (+0900) Subject: Correct API reference X-Git-Tag: submit/tizen_5.5/20191104.160818^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=74f2bbc3ec2c344d6b74aa59c5e4658d0bc67f53;p=platform%2Fcore%2Fapi%2Fhttp.git Correct API reference Change-Id: I5cc9d9623d31406bfceff33c872b786f84509110 Signed-off-by: Cheoleun Moon --- diff --git a/include/http.h b/include/http.h index b2178d1..61c16e4 100644 --- a/include/http.h +++ b/include/http.h @@ -344,7 +344,7 @@ int http_session_create(http_session_mode_e mode, http_session_h *http_session); /** * @brief Destroys the HTTP session handle. * @since_tizen 3.0 - * @remarks http_session should be set to NULL after using it + * @remarks The @a http_session should be set to NULL after using it * @param[in] http_session The HTTP session handle * @return @c 0 on success, * otherwise negative error value @@ -485,8 +485,7 @@ int http_transaction_submit(http_transaction_h http_transaction); /** * @brief Closes the HTTP transaction handle. * @since_tizen 3.0 - * @remarks The @a http_transaction is released by http_transaction_destroy(). - * http_transaction should be set to NULL after using it. + * @remarks The @a http_transaction should be set to NULL after using it. * @param[in] http_transaction The HTTP transaction handle * @return @c 0 on success, * otherwise negative error value @@ -494,7 +493,8 @@ int http_transaction_submit(http_transaction_h http_transaction); * @retval #HTTP_ERROR_INVALID_PARAMETER Invalid parameter * @retval #HTTP_ERROR_INVALID_OPERATION Invalid operation * @retval #HTTP_ERROR_NOT_SUPPORTED Not Supported - * @see http_transaction_create() + * @see http_session_open_transaction() + * @see http_transaction_open_authentication() */ int http_transaction_destroy(http_transaction_h http_transaction);