Skip to content

Commit 68bae2b

Browse files
authored
docs(ffi): remove redundant backticks (#3855)
Signed-off-by: jimmycathy <[email protected]>
1 parent 621d8e4 commit 68bae2b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ffi/task.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ struct ExecWaker(AtomicBool);
9090
/// - hyper_body_data: Creates a task that will poll a response body for the next buffer of data.
9191
/// - hyper_body_foreach: Creates a task to execute the callback with each body chunk received.
9292
///
93-
/// Tasks then have a userdata associated with them using `hyper_task_set_userdata``. This
93+
/// Tasks then have a userdata associated with them using `hyper_task_set_userdata`. This
9494
/// is important, for instance, to associate a request id with a given request. When multiple
9595
/// tasks are running on the same executor, this allows distinguishing tasks for different
9696
/// requests.
@@ -508,7 +508,7 @@ ffi_fn! {
508508
/// Creates a waker associated with the task context.
509509
///
510510
/// The waker can be used to inform the task's executor that the task is
511-
/// ready to make progress (using `hyper_waker_wake``).
511+
/// ready to make progress (using `hyper_waker_wake`).
512512
///
513513
/// Typically this only needs to be called once, but it can be called
514514
/// multiple times, returning a new waker each time.

0 commit comments

Comments
 (0)