diff options
author | Vincent Ambo <mail@tazj.in> | 2018-09-26T16·02+0200 |
---|---|---|
committer | Vincent Ambo <mail@tazj.in> | 2018-09-26T16·02+0200 |
commit | 965574913e835e746b8e71b62eb76898a6686ded (patch) | |
tree | 127898c70ef7d3493a4cd3ef1d87441046885d10 /finito-core/src/lib.rs | |
parent | 401486d124154e8fb33e319814648e4a10b30e94 (diff) |
docs(core): Fix rustdoc syntax in several places
Diffstat (limited to 'finito-core/src/lib.rs')
-rw-r--r-- | finito-core/src/lib.rs | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/finito-core/src/lib.rs b/finito-core/src/lib.rs index a622134a1139..0fdb2bd912b8 100644 --- a/finito-core/src/lib.rs +++ b/finito-core/src/lib.rs @@ -69,7 +69,7 @@ //! documentation. Unfortunately those assumptions are not //! automatically verifiable in Rust. //! -//! == Example +//! ## Example //! //! Please consult `finito-door` for an example representing a simple, //! lockable door as a finite-state machine. This gives an overview @@ -88,15 +88,16 @@ //! //! Currently, those libraries include: //! -//! * @finito@: Core components and classes of Finito +//! * `finito`: Core components and classes of Finito //! -//! * @finito-in-mem@: In-memory implementation of state machines +//! * `finito-in-mem`: In-memory implementation of state machines //! that do not need to live longer than an application using //! standard library concurrency primitives. //! -//! * @finito-postgres@: Postgres-backed, persistent implementation +//! * `finito-postgres`: Postgres-backed, persistent implementation //! of state machines that, well, do need to live longer. Uses -//! Postgres for concurrency synchronisation, so keep that in mind. +//! Postgres for concurrency synchronisation, so keep that in +//! mind. //! //! Which should cover most use-cases. Okay, enough prose, lets dive //! in. |