IonicaBizau / image-to-ascii

:floppy_disk: A Node.js module that converts images to ASCII art.
http://ionicabizau.net/blog/16
MIT License
1.58k stars 106 forks source link

Fix whitespace errors #80

Closed friederbluemle closed 3 days ago

friederbluemle commented 2 weeks ago

Two files in the repo contained a few minor whitespace errors:

DOCUMENTATION.md:64: new blank line at EOF.
example/webcam.sh:2: trailing whitespace.
+    {
example/webcam.sh:3: space before tab in indent.
+       # try block
example/webcam.sh:4: space before tab in indent.
+       streamer -f jpeg -o out.jpeg -q
example/webcam.sh:6: space before tab in indent.
+       # catch block
example/webcam.sh:7: space before tab in indent.
+       echo "[Error: failed to open video camera!]"
example/webcam.sh:8: space before tab in indent.
+       exit 1

This fixes it. Thanks for this project!