summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2019-07-17 19:35:11 +0200
committerManos Pitsidianakis <el13635@mail.ntua.gr>2019-08-02 01:00:53 +0300
commit6e716946b70f3e8ed5e05119d3dd438105118538 (patch)
tree9d44f5c21c53690da1651abffabf1af598eb64c6
parentfb36dc58c860fe6e72a2613bb4bd681f899d549a (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 4f726df2..f5883a42 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;
use std::io::Write;