From 6e716946b70f3e8ed5e05119d3dd438105118538 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Wed, 17 Jul 2019 19:35:11 +0200 Subject: [PATCH] Reformat to be a proper rust comment Signed-off-by: Matthias Beyer --- src/bin.rs | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/src/bin.rs b/src/bin.rs index 4f726df2..f5883a42 100644 --- a/src/bin.rs +++ b/src/bin.rs @@ -19,10 +19,13 @@ * along with meli. If not, see . */ -/*! 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; use std::io::Write;