1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* doc/syntax/methods.rdoc: Fixed link

* doc/syntax/modules_and_classes.rdoc:  Fixed link
* doc/syntax.rdoc:  Updated with links to the recently added pages


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38842 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
drbrain 2013-01-15 18:15:12 +00:00
parent 4b8bb0f95f
commit 8113321482
4 changed files with 23 additions and 5 deletions

View file

@ -1,3 +1,9 @@
Wed Jan 16 03:15:00 2013 Eric Hodel <drbrain@segment7.net>
* doc/syntax/methods.rdoc: Fixed link
* doc/syntax/modules_and_classes.rdoc: Fixed link
* doc/syntax.rdoc: Updated with links to the recently added pages
Wed Jan 16 03:05:50 2013 Eric Hodel <drbrain@segment7.net>
* doc/syntax/control_expressions.rdoc (redo Statement): Added note

View file

@ -2,12 +2,24 @@
The Ruby syntax is large and is split up into the following sections:
Literals[rdoc-ref:doc/syntax/literals.rdoc] ::
Literals[rdoc-ref:syntax/literals.rdoc] ::
Numbers, Strings, Arrays, Hashes, etc.
Methods[rdoc-ref:doc/syntax/methods.rdoc] ::
{Control Expressions}[rdoc-ref:syntax/control_expressions.rdoc] ::
+if+, +unless+, +while+, +until+, +for+, +break+, +next+, +redo+
Methods[rdoc-ref:syntax/methods.rdoc] ::
Method and method argument syntax
Exceptions[rdoc-ref:doc/syntax/exceptions.rdoc] ::
{Calling Methods}[rdoc-ref:syntax/calling_methods.rdoc] ::
How to call a method (or send a message to a method)
{Modules and Classes}[rdoc-ref:syntax/modules_and_classes.rdoc] ::
Creating modules and classes including inheritance
Exceptions[rdoc-ref:syntax/exceptions.rdoc] ::
Exception handling syntax
Precedence[rdoc-ref:syntax/precedence.rdoc] ::
Precedence of ruby operators

View file

@ -346,5 +346,5 @@ May be written as:
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:doc/syntax/exceptions.rdoc].
Handling}[rdoc-ref:syntax/exceptions.rdoc].

View file

@ -121,7 +121,7 @@ If a constant is defined at the top-level you may preceded it with
=== Methods
For method definition documentation see the {syntax documentation for
methods}[rdoc-ref:doc/syntax/methods.rdoc].
methods}[rdoc-ref:syntax/methods.rdoc].
Class methods may be called directly. (This is slightly confusing, but a
method on a module is often called a "class method" instead of a "module