diff options
author | dave <dave@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-08-25 19:41:31 +0000 |
---|---|---|
committer | dave <dave@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-08-25 19:41:31 +0000 |
commit | 4441ea370bbdcc7fa5c90654f714d056f6ac8845 (patch) | |
tree | 030c98c7cc44c26ed7afc697dc969b9491074ee3 | |
parent | ee0bdcd6289257af4d11402b49a8daea0be7a7a3 (diff) |
Minor fix to error message
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6820 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | eval.c | 2 | ||||
-rw-r--r-- | lib/rdoc/usage.rb | 3 |
3 files changed, 7 insertions, 3 deletions
@@ -1,3 +1,8 @@ +Thu Aug 26 04:38:29 2004 Dave Thomas <[email protected]> + + * eval.c (return_jump): Minor typo in error message. Now reads + "return can't jump across threads". + Wed Aug 25 15:18:52 2004 Nobuyoshi Nakada <[email protected]> * eval.c (rb_longjmp): Exception#to_str is no longer defined. @@ -4553,7 +4553,7 @@ return_jump(retval) JUMP_TAG(TAG_RETURN); } if (tt->tag == PROT_THREAD) { - rb_raise(rb_eThreadError, "return jump can't across threads"); + rb_raise(rb_eThreadError, "return can jump't across threads"); } tt = tt->prev; } diff --git a/lib/rdoc/usage.rb b/lib/rdoc/usage.rb index 73821dfae1..da6593d89e 100644 --- a/lib/rdoc/usage.rb +++ b/lib/rdoc/usage.rb @@ -1,7 +1,7 @@ # = Synopsis # # This library allows command-line tools to encapsulate their usage -# as a comment at the top of the main file. Calling <tt>RDoc::show_usage</tt> +# as a comment at the top of the main file. Calling <tt>RDoc::usage</tt> # then displays some or all of that comment, and optionally exits # the program with an exit status. We always look for the comment # in the main program file, so it is safe to call this method @@ -190,7 +190,6 @@ module RDoc ##### # Report the fact that no doc comment count be found def RDoc.no_comment -fail "xxx" $stderr.puts "No usage information available for this program" nil end |