Skip to content

Commit

Permalink
* lib/rdoc/ri/ri_formatter.rb (RI::TextFormatter::wrap): removed
Browse files Browse the repository at this point in the history
  space before argument parenthesis.  [ruby-talk:183630]

* ruby.1: a clarification patch from David Lutterkort
  <dlutter at redhat.com>.  [ruby-core:7508]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@10030 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
matz committed Mar 11, 2006
1 parent f47eaab commit dafff6d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
8 changes: 8 additions & 0 deletions ChangeLog
@@ -1,3 +1,11 @@
Sat Mar 11 14:24:06 2006 Yukihiro Matsumoto <matz@ruby-lang.org>

* lib/rdoc/ri/ri_formatter.rb (RI::TextFormatter::wrap): removed
space before argument parenthesis. [ruby-talk:183630]

* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]

Sat Mar 4 15:26:40 2006 Tanaka Akira <akr@m17n.org>

* gc.c (id2ref): fix symbol test.
Expand Down
2 changes: 1 addition & 1 deletion lib/rdoc/ri/ri_formatter.rb
Expand Up @@ -43,7 +43,7 @@ def wrap(txt, prefix=@indent, linelen=@width)
end
end
res << work if work.length.nonzero?
puts (prefix + res.join("\n" + next_prefix))
puts(prefix + res.join("\n" + next_prefix))
end

######################################################################
Expand Down
5 changes: 3 additions & 2 deletions ruby.1
Expand Up @@ -309,9 +309,10 @@ this switch, unless you are going to debug the Ruby interpreter.
.Sh ENVIRONMENT
.Bl -tag -width "RUBYLIB_PREFIX" -compact
.It Ev RUBYLIB
A colon-separated list of directories that are appended to Ruby's
A colon-separated list of directories that are added to Ruby's
library load path
.Pf ( Li "$:" ) .
.Pf ( Li "$:" ) . Directories from this environment variable are searched
before the standard load path is searched.
.Pp
e.g.:
.Dl RUBYLIB="$HOME/lib/ruby:$HOME/lib/rubyext"
Expand Down

0 comments on commit dafff6d

Please sign in to comment.