aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Lange <kevin.lange@dakko.us>2012-04-01 16:07:35 -0500
committerKevin Lange <kevin.lange@dakko.us>2012-04-01 16:07:35 -0500
commit5a88b86b6abe3aae7f8c1e6f7545f2cc2ed260d7 (patch)
tree7b12e6e7719b8de5fc44c955a1763b7688e25270
parent0e34917dd9caaf8ec15270dd9aaf6de8d9db47cd (diff)
downloadnyancat-5a88b86b6abe3aae7f8c1e6f7545f2cc2ed260d7.tar.gz
:set spell ... I'm a bloody moron.
-rw-r--r--src/nyancat.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/nyancat.c b/src/nyancat.c
index d43a02f..234ff10 100644
--- a/src/nyancat.c
+++ b/src/nyancat.c
@@ -9,7 +9,7 @@
* http://github.com/Peetz0r/nyancat
* http://peter.haas-en-berg.nl
*
- * Build tools unifed by: Aaron Peschel
+ * Build tools unified by: Aaron Peschel
* https://github.com/apeschel
*
* For a complete listing of contributers, please see the git commit history.
@@ -90,7 +90,7 @@
char * colors[256] = {NULL};
/*
- * For most modes, we ouput spaces, but for some
+ * For most modes, we output spaces, but for some
* we will use block characters (or even nothing)
*/
char * output = " ";
@@ -280,7 +280,7 @@ void usage(char * argv[]) {
"\n"
"usage: %s [-hitn] [-f \033[3mframes\033[0m]\n"
"\n"
- " -i --intro \033[3mShow the introduction / about informaiton at startup.\033[0m\n"
+ " -i --intro \033[3mShow the introduction / about information at startup.\033[0m\n"
" -t --telnet \033[3mTelnet mode.\033[0m\n"
" -n --no-counter \033[3mDo not display the timer\033[0m\n"
" -s --no-title \033[3mDo not set the titlebar text\033[0m\n"
@@ -465,7 +465,7 @@ int main(int argc, char ** argv) {
break;
case DO:
case DONT:
- /* Do / Don't Negotation */
+ /* Do / Don't Negotiation */
opt = getchar();
if (!telnet_options[opt]) {
/* We default to DONT */
@@ -500,7 +500,7 @@ int main(int argc, char ** argv) {
* our limit; honestly, we shouldn't hit
* the limit, as we're only collecting characters
* for a terminal type or window size, but better safe than
- * sorry (and vulernable).
+ * sorry (and vulnerable).
*/
sb[sb_len] = i;
sb_len++;
@@ -754,7 +754,7 @@ int main(int argc, char ** argv) {
for (y = min_row; y < max_row; ++y) {
for (x = min_col; x < max_col; ++x) {
if (always_escape) {
- /* Text mode (or "Always Send Color Escapse") */
+ /* Text mode (or "Always Send Color Escapes") */
printf("%s", colors[frames[i][y][x]]);
} else {
if (frames[i][y][x] != last && colors[frames[i][y][x]]) {
@@ -798,7 +798,7 @@ int main(int argc, char ** argv) {
}
/* Reset the last color so that the escape sequences rewrite */
last = 0;
- /* Update frame crount */
+ /* Update frame count */
++f;
if (frame_count != 0 && f == frame_count) {
finish();