mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/prettyprint.rb: update document. [ruby-core:36776]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_3@32818 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
2fb749fed6
commit
5bd45265c5
2 changed files with 13 additions and 1 deletions
|
|
@ -1,3 +1,8 @@
|
|||
Wed Aug 3 00:11:08 2011 Tanaka Akira <akr@fsij.org>
|
||||
|
||||
* lib/prettyprint.rb: update document. [ruby-core:36776]
|
||||
|
||||
|
||||
Tue Aug 2 20:10:16 2011 Shota Fukumori <sorah@tubusu.net>
|
||||
|
||||
* test/testunit/test_parallel.rb: pass "--ruby" option to
|
||||
|
|
|
|||
|
|
@ -157,7 +157,14 @@ class PrettyPrint
|
|||
end
|
||||
end
|
||||
|
||||
# This is similar to #breakable, but is less-likely to insert a newline.
|
||||
# This is similar to #breakable except
|
||||
# the decision to break or not is determined individually.
|
||||
#
|
||||
# Two #fill_breakable under a group may cause 4 results:
|
||||
# (break,break), (break,non-break), (non-break,break), (non-break,non-break).
|
||||
# This is different to #breakable because two #breakable under a group
|
||||
# may cause 2 results:
|
||||
# (break,break), (non-break,non-break).
|
||||
#
|
||||
# The text sep+ is inserted if a line is not broken at this point.
|
||||
#
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue