From 6ff1653cf6dc03d9ca5698c2247c8bb50e8bfd95 Mon Sep 17 00:00:00 2001 From: drbrain Date: Sat, 19 Jan 2013 00:16:08 +0000 Subject: * doc/syntax/assignment.rdoc: Improved links * doc/syntax/methods.rdoc: ditto. * doc/syntax.rdoc: Added link to assignment document git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38880 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 7 +++++++ doc/syntax.rdoc | 3 +++ doc/syntax/assignment.rdoc | 7 ++++--- doc/syntax/methods.rdoc | 4 ++-- 4 files changed, 16 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index 2df06821da..4e87b80c40 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +Sat Jan 19 09:15:58 2013 Eric Hodel + + * doc/syntax/assignment.rdoc: Improved links + * doc/syntax/methods.rdoc: ditto. + + * doc/syntax.rdoc: Added link to assignment document + Sat Jan 19 08:47:33 2013 Eric Hodel * doc/syntax/assignment.rdoc: Added a syntax document on assignment. diff --git a/doc/syntax.rdoc b/doc/syntax.rdoc index 16f66c16e3..d840d936ed 100644 --- a/doc/syntax.rdoc +++ b/doc/syntax.rdoc @@ -5,6 +5,9 @@ The Ruby syntax is large and is split up into the following sections: Literals[rdoc-ref:syntax/literals.rdoc] :: Numbers, Strings, Arrays, Hashes, etc. +Assignment[rdoc-ref:syntax/assignment.rdoc] :: + Assignment and variables + {Control Expressions}[rdoc-ref:syntax/control_expressions.rdoc] :: +if+, +unless+, +while+, +until+, +for+, +break+, +next+, +redo+ diff --git a/doc/syntax/assignment.rdoc b/doc/syntax/assignment.rdoc index 8c7fa3a7aa..830ba39ff0 100644 --- a/doc/syntax/assignment.rdoc +++ b/doc/syntax/assignment.rdoc @@ -57,7 +57,8 @@ This prints: You may isolate variables in a block from the outer scope by listing them following a ; in the block's arguments. See the documentation -for {calling methods}[rdoc-ref:syntax/calling_methods.rdoc] for an example. +for block local variables in the {calling +methods}[rdoc-ref:syntax/calling_methods.rdoc] documentation for an example. See also Kernel#local_variables, but note that a +for+ loop does not create a new scope like a block does. @@ -416,8 +417,8 @@ But you may only use one * in an assignment. == Array Decomposition -As with {method arguments}[rdoc-ref:syntax/methods.rdoc] you can decompose an -Array using parenthesis: +Like Array decomposition in {method arguments}[rdoc-ref:syntax/methods.rdoc] +you can decompose an Array during assignment using parenthesis: (a, b) = [1, 2] diff --git a/doc/syntax/methods.rdoc b/doc/syntax/methods.rdoc index 5499632f76..7fd69983f3 100644 --- a/doc/syntax/methods.rdoc +++ b/doc/syntax/methods.rdoc @@ -409,6 +409,6 @@ May be written as: end If you wish to rescue an exception for only part of your method use +begin+ and -+end+. For more details see the page on {Exception -Handling}[rdoc-ref:syntax/exceptions.rdoc]. ++end+. For more details see the page on {exception +handling}[rdoc-ref:syntax/exceptions.rdoc]. -- cgit v1.2.3