Merge pull request #126 from hialmar/patch-1 concat bug

The code misses a + sign on line 36.
This commit is contained in:
Aaron Liu 2023-02-16 15:33:53 -05:00 committed by GitHub
commit aa634424d6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -33,7 +33,7 @@ public class TerminalImageViewer {
"TerminalImageViewer Java\n" +
" - Use -w and -h to set the maximum width and height in characters (defaults: 80, 24).\n" +
" - Use -256 for 256 color mode, -grayscale for grayscale and -stdin to obtain file names from stdin.\n" +
" - When multiple files are supplied, -c sets the number of images per row (default: 4)."
" - When multiple files are supplied, -c sets the number of images per row (default: 4)." +
"NOTE: This version of TerminalImageViewer is not regularly updated. Please use the C++ version instead.\n");
return;
}