/**
* @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
/**
* @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
* @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);