From adaca12a61adb5d4e334b70b2096ef903af790d4 Mon Sep 17 00:00:00 2001 From: Lotte Steenbrink Date: Mon, 19 Apr 2021 11:55:11 +0200 Subject: [PATCH] appeal to the rustfmt gods --- beginner/apps/src/bin/hello.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/beginner/apps/src/bin/hello.rs b/beginner/apps/src/bin/hello.rs index 9d20aa2..f7734b8 100644 --- a/beginner/apps/src/bin/hello.rs +++ b/beginner/apps/src/bin/hello.rs @@ -9,11 +9,12 @@ use cortex_m_rt::entry; use panic_log as _; // the panicking behavior +// the custom entry point +// vvvvv #[entry] -// ˆˆˆˆ the custom entry point fn main() -> ! { // ˆˆˆ - // ! is the 'never' type: this function never returns + // ! is the 'never' type: this function never returns // initializes the peripherals dk::init().unwrap();