Skip to content

doc: fix typo in fiber.rst #40

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 20, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion source/fiber.rst
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ Fibers do not start execution automatically, we have to call
ev_run(loop(), 0);

Here once the fiber is created we kick it to execute. This is done
inside ``fiber_call_impl`` which uses ``core_transfer``
inside ``fiber_call_impl`` which uses ``coro_transfer``
routine to jump into ``fiber_loop`` and invoke ``run_script_f``
inside.

Expand Down