summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2019-07-15 18:56:53 +0200
committerMatthias Beyer <mail@beyermatthias.de>2019-07-17 19:32:11 +0200
commit1fb7da0291bb0bcd3ce352e5b6b1d67059067513 (patch)
tree862cd88f7f6b2c1dc7476185bcf434fe21fb5cc4
parente1242c903e7e51df396261989196a1a3864f3f00 (diff)
Reformat to be a proper rust comment
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
-rw-r--r--src/bin.rs11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/bin.rs b/src/bin.rs
index e94f6901..b9c75503 100644
--- a/src/bin.rs
+++ b/src/bin.rs
@@ -19,10 +19,13 @@
* along with meli. If not, see <http://www.gnu.org/licenses/>.
*/
-/*! This crate contains the frontend stuff of the application. The application entry way on `src/bin.rs` creates an event loop and passes input to the `ui` module.
-
-The mail handling stuff is done in the `melib` crate which includes all backend needs. The split is done to theoretically be able to create different frontends with the same innards.
- */
+//!
+//! This crate contains the frontend stuff of the application. The application entry way on
+//! `src/bin.rs` creates an event loop and passes input to the `ui` module.
+//!
+//! The mail handling stuff is done in the `melib` crate which includes all backend needs. The
+//! split is done to theoretically be able to create different frontends with the same innards.
+//!
use std::alloc::System;