aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor <pashev.igor@gmail.com>2010-01-17 21:06:22 +0300
committerIgor <pashev.igor@gmail.com>2010-01-17 21:06:22 +0300
commit2c53ba0b9b36d1faff38cad74d0795b7b164efac (patch)
tree4ffc7e5f774def3b0921a070b75781ade659de3b
parent26301f19486c2b09d922e0317b32a5903b91b792 (diff)
downloadbrainfuck-2c53ba0b9b36d1faff38cad74d0795b7b164efac.tar.gz
Fixed typo
-rw-r--r--README4
-rw-r--r--brainfuck.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/README b/README
index 7f220c0..be42fc9 100644
--- a/README
+++ b/README
@@ -20,8 +20,8 @@ Output formats for operator '.':
Standard operators: <>+-[].,
Extensions:
ciuox - change format output (same as -c & others, see above)
- ; - end of code (usefull when reading stdin)
- # - comment to the end of line (usefull when reading files)
+ ; - end of code (useful when reading stdin)
+ # - comment to the end of line (useful when reading files)
Example:
echo '+++[.-]' | ./brainfuck
diff --git a/brainfuck.c b/brainfuck.c
index 79ff0e5..2b530b9 100644
--- a/brainfuck.c
+++ b/brainfuck.c
@@ -207,8 +207,8 @@ void usage(char * self)
printf("Standard operators: <>+-[].,\n");
printf("Extensions:\n");
printf(" ciuox - change format output (same as -c & others, see above)\n");
- printf(" ; - end of code (usefull when reading stdin)\n");
- printf(" # - comment to the end of line (usefull when reading files)\n");
+ printf(" ; - end of code (useful when reading stdin)\n");
+ printf(" # - comment to the end of line (useful when reading files)\n");
printf("\n");
printf("Example:\n");
printf(" echo '+++[.-]' | %s\n", self);