eo: fix efl_future_then example.

Summary: Depends on D7393

Reviewers: segfaultxavi

Reviewed By: segfaultxavi

Subscribers: #reviewers, #committers

Tags: #efl

Maniphest Tasks: T7472

Differential Revision: https://phab.enlightenment.org/D7423
This commit is contained in:
Cedric BAIL 2018-12-07 13:22:31 +01:00 committed by Xavi Artigas
parent 524c05d825
commit 2bc28da2e3
1 changed files with 1 additions and 1 deletions

View File

@ -522,7 +522,7 @@ typedef struct _Efl_Future_Cb_Desc {
* //Usually this would be done with an eina_future_race() of the download promise and a timeout promise,
* //however the following example is useful to illustrate efl_key_data_set() usage.
* efl_key_data_set(downloader, "timer", timer);
* eina_future_then_from_desc(f, efl_future_cb(.success = _file_ok, .error = _file_err, .success_type = EINA_VALUE_TYPE_STRING, .free = downloader_free));
* efl_future_then(downloader, f, .success = _file_ok, .error = _file_err, .success_type = EINA_VALUE_TYPE_STRING, .free = downloader_free);
* }
* @endcode
*