From 902d8472e8913576b01834c2cfe8f57b0530cb30 Mon Sep 17 00:00:00 2001 From: nick black Date: Tue, 25 Aug 2020 09:09:48 -0400 Subject: [PATCH] zoo: break up lines --- src/demo/zoo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/demo/zoo.c b/src/demo/zoo.c index 27ccaa9d5..bbb7a57fe 100644 --- a/src/demo/zoo.c +++ b/src/demo/zoo.c @@ -189,7 +189,7 @@ selector_run(struct notcurses* nc, struct ncreader* reader, struct ncselector* s "Notcurses provides several widgets to quickly build vivid TUIs.\n\n" "This NCReader widget facilitates free-form text entry complete with readline-style bindings.\n\n" "NCSelector allows a single option to be selected from a list.\n\n" - "NCFdplane streams a file descriptor, while NCSubproc spawns a subprocess and streams its output. "; + "NCFdplane streams a file descriptor, while NCSubproc spawns a subprocess and streams its output.\n\n"; int ret = 0, dimy, dimx; ncplane_dim_yx(notcurses_stdplane(nc), &dimy, &dimx); const int centery = (dimy - ncplane_dim_y(ncreader_plane(reader))) / 2;