The reason is that it writes "**a `Callback<IN>` is returned**". https://github.com/yewstack/docs/blob/2bdbafcd7edb07c241d64ca13bab4aa042a7eb85/src/concepts/components/callbacks.md#L23-L27 [send_message_batch](https://docs.rs/yew/0.17.1/yew/html/struct.Scope.html#method.send_message_batch) does not return `Callback<IN>` , but [batch_callback](https://docs.rs/yew/0.17.1/yew/html/struct.Scope.html#method.batch_callback) return `Callback<IN>`. If it's correct, I create a pull request.
The reason is that it writes "a
Callback<IN>is returned".docs/src/concepts/components/callbacks.md
Lines 23 to 27 in 2bdbafc
send_message_batch does not return
Callback<IN>, but batch_callback returnCallback<IN>.If it's correct, I create a pull request.