diff options
author | zzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2012-12-13 05:22:30 +0000 |
---|---|---|
committer | zzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2012-12-13 05:22:30 +0000 |
commit | 89833152381b759482d5e0ae9dcbdd9ed29a2b6a (patch) | |
tree | ab615431bccab8bde95bb57d893ecea4b2bd4405 /lib/irb/workspace.rb | |
parent | 0ac361f54060a26f771d8751f06bbd1013db2016 (diff) |
* lib/irb*: merge doc from doc/irb/ird.rd and improve overall
documentation of IRB
* doc/irb/irb.rd: remove stale documentation
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38358 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/irb/workspace.rb')
-rw-r--r-- | lib/irb/workspace.rb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/irb/workspace.rb b/lib/irb/workspace.rb index a8d4a90ad8..04490ba7c6 100644 --- a/lib/irb/workspace.rb +++ b/lib/irb/workspace.rb @@ -8,9 +8,11 @@ # # # -module IRB +module IRB # :nodoc: class WorkSpace - # create new workspace. set self to main if specified, otherwise + # Creates a new workspace. + # + # set self to main if specified, otherwise # inherit main from TOPLEVEL_BINDING. def initialize(*main) if main[0].kind_of?(Binding) |