Merge branch 'devs/xartigas/typos'

This commit is contained in:
Andy Williams 2018-01-03 09:21:33 +00:00
commit 8e23f6abff
2 changed files with 2 additions and 2 deletions

View File

@ -302,7 +302,7 @@ eina_init(void)
eina_cpu_count_internal();
EINA_ERROR_NOT_MAIN_LOOP = eina_error_msg_static_register("Not in main loop.");
EINA_ERROR_NOT_IMPLEMENTED = eina_error_msg_static_register("Functionallity not implemented.");
EINA_ERROR_NOT_IMPLEMENTED = eina_error_msg_static_register("Functionality not implemented.");
eina_log_timing(_eina_log_dom, EINA_LOG_STATE_STOP, EINA_LOG_STATE_INIT);

View File

@ -935,7 +935,7 @@ EAPI Eina_Future *eina_future_rejected(Eina_Future_Scheduler *scheduler, Eina_Er
* f = eina_future_then_easy(f, .success = _future_cb1, .success_type = EINA_VALUE_TYPE_INT);
* // _future_cb2 will be executed after _future_cb1()
* f = eina_future_then_easy(f, .success = _future_cb2, .success_type = EINA_VALUE_TYPE_STRING);
* // _future_cb2 will be executed after _future_cb2()
* // _future_cb3 will be executed after _future_cb2()
* f = eina_future_then_easy(f, .success = _future_cb3, .success_type = EINA_VALUE_TYPE_DOUBLE);
* // If an error happens _future_err will be called
* eina_future_then_easy(f, .error = _future_err);