summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-11-20 03:37:27 +0000
committerzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-11-20 03:37:27 +0000
commit7e96fb252a79fbdd9c34924edddbf781937d50b8 (patch)
tree2f008f8eb58dfffc9f612119265fa31668b82443
parentca8f327522fa9672ef4f569c71063112308099fa (diff)
* ruby.c (usage_msg): Fix typo [ruby-core:49205] [Bug #7327]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37745 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--ruby.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 33ae570d64..45f66f4521 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
Tue Nov 20 12:35:00 2012 Zachary Scott <zachary@zacharyscott.net>
+ * ruby.c (usage_msg): Fix typo [ruby-core:49205] [Bug #7327]
+
+Tue Nov 20 12:35:00 2012 Zachary Scott <zachary@zacharyscott.net>
+
* file.c (File::NULL): Document File::NULL constant
[ruby-core:49384] [Bug #7365]
diff --git a/ruby.c b/ruby.c
index 89d535a6d7..31fd8b83da 100644
--- a/ruby.c
+++ b/ruby.c
@@ -160,7 +160,7 @@ usage(const char *name, int help)
M("-l", "", "enable line ending processing"),
M("-n", "", "assume 'while gets(); ... end' loop around your script"),
M("-p", "", "assume loop like -n but print line also like sed"),
- M("-rlibrary", "", "require the library, before executing your script"),
+ M("-rlibrary", "", "require the library before executing your script"),
M("-s", "", "enable some switch parsing for switches after script name"),
M("-S", "", "look for the script using PATH environment variable"),
M("-T[level=1]", "", "turn on tainting checks"),