aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--doc/syntax.rdoc18
-rw-r--r--doc/syntax/methods.rdoc2
-rw-r--r--doc/syntax/modules_and_classes.rdoc2
4 files changed, 23 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index db4eca64f7..028fddad60 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
diff --git a/doc/syntax.rdoc b/doc/syntax.rdoc
index b90c0680b7..4050dbe853 100644
--- a/doc/syntax.rdoc
+++ b/doc/syntax.rdoc
@@ -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
+
diff --git a/doc/syntax/methods.rdoc b/doc/syntax/methods.rdoc
index 15f1ef007d..28311d1af6 100644
--- a/doc/syntax/methods.rdoc
+++ b/doc/syntax/methods.rdoc
@@ -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].
diff --git a/doc/syntax/modules_and_classes.rdoc b/doc/syntax/modules_and_classes.rdoc
index bcf805ac46..2c8f5321e0 100644
--- a/doc/syntax/modules_and_classes.rdoc
+++ b/doc/syntax/modules_and_classes.rdoc
@@ -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