From 33264b4aec27066e6abb7cc7d15bd680b43fcd5a Mon Sep 17 00:00:00 2001 From: Joscha Date: Sun, 29 May 2022 12:02:15 +0200 Subject: [PATCH] Remove TODO --- examples/text_wrapping.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/examples/text_wrapping.rs b/examples/text_wrapping.rs index 2c48dd6..f150142 100644 --- a/examples/text_wrapping.rs +++ b/examples/text_wrapping.rs @@ -16,7 +16,6 @@ fn draw(f: &mut Frame) { "It can also properly handle wide graphemes (like emoji 🤔), ", "including ones usually displayed incorrectly by terminal emulators, like 👩‍🔬 (a female scientist emoji).", ); - // TODO Actually use nbsp let breaks = f.wrap(text, f.size().width.into()); let lines = toss::split_at_indices(text, &breaks);