Finite state machines in rust; bendns fork to add types.
Diffstat (limited to 'rust_fsm/src/lib.rs')
| -rw-r--r-- | rust_fsm/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rust_fsm/src/lib.rs b/rust_fsm/src/lib.rs index 259e038..7c5fbd2 100644 --- a/rust_fsm/src/lib.rs +++ b/rust_fsm/src/lib.rs @@ -30,7 +30,7 @@ //! All you need to do to build a state machine is to implement the //! `StateMachine` trait and use it in conjuctions with some of the provided //! wrappers (for now there is only `StateMachineWrapper`). -//! +//! //! You can see an example of the Circuit Breaker state machine in the //! [project repository][repo]. //! |