diff options
author | 2023-01-11 21:48:21 +0100 | |
---|---|---|
committer | 2023-01-11 22:16:56 +0100 | |
commit | 050313d62d84dd9f537bbc578213f18cd7640d04 (patch) | |
tree | caa51cc2b6dad1f8be02113b9247b0f1eabc2c27 /examples/binds.rs | |
parent | c370c0b21f054fa224680b95df63ca3d59f33ba1 (diff) | |
download | rtic-050313d62d84dd9f537bbc578213f18cd7640d04.tar.gz rtic-050313d62d84dd9f537bbc578213f18cd7640d04.tar.zst rtic-050313d62d84dd9f537bbc578213f18cd7640d04.zip |
Missed hprintln with multiline
Diffstat (limited to 'examples/binds.rs')
-rw-r--r-- | examples/binds.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/binds.rs b/examples/binds.rs index 04b8fad1..db5bd96f 100644 --- a/examples/binds.rs +++ b/examples/binds.rs @@ -49,7 +49,6 @@ mod app { "foo called {} time{}", *cx.local.times, if *cx.local.times > 1 { "s" } else { "" } - ) - .unwrap(); + ); } } |