diff options
Diffstat (limited to 'examples/smallest.rs')
-rw-r--r-- | examples/smallest.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/smallest.rs b/examples/smallest.rs index 6afcfbd4..31750e25 100644 --- a/examples/smallest.rs +++ b/examples/smallest.rs @@ -16,6 +16,6 @@ mod app { #[init] fn init(_: init::Context) -> (Shared, Local, init::Monotonics) { - (Shared {}, Local {}, init::Monotonics {}) + (Shared {}, Local {}, init::Monotonics()) } } |