Fix the code example in dispatching::dialogue

This commit is contained in:
Temirkhan Myrzamadi 2020-07-25 01:16:29 +06:00
parent 063e673369
commit 8a961e8fdf

View file

@ -38,13 +38,13 @@
//!
//! pub type Out = TransitionOut<D>;
//!
//! pub async fn _1_transition(cx: TransitionIn, state: _1State) {
//! pub async fn _1_transition(cx: TransitionIn, state: _1State) -> Out {
//! todo!()
//! }
//! pub async fn _2_transition(cx: TransitionIn, state: _2State) {
//! pub async fn _2_transition(cx: TransitionIn, state: _2State) -> Out {
//! todo!()
//! }
//! pub async fn _3_transition(cx: TransitionIn, state: _3State) {
//! pub async fn _3_transition(cx: TransitionIn, state: _3State) -> Out {
//! todo!()
//! }
//!