aboutsummaryrefslogtreecommitdiff
path: root/examples/binds.rs
diff options
context:
space:
mode:
authorGravatar Henrik Tjäder <henrik@tjaders.com> 2023-01-11 21:48:21 +0100
committerGravatar Henrik Tjäder <henrik@tjaders.com> 2023-01-11 22:16:56 +0100
commit050313d62d84dd9f537bbc578213f18cd7640d04 (patch)
treecaa51cc2b6dad1f8be02113b9247b0f1eabc2c27 /examples/binds.rs
parentc370c0b21f054fa224680b95df63ca3d59f33ba1 (diff)
downloadrtic-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.rs3
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();
+ );
}
}