summaryrefslogtreecommitdiff
path: root/doc/syntax
diff options
context:
space:
mode:
authordrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-01-15 18:29:05 +0000
committerdrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-01-15 18:29:05 +0000
commit4cf9fa309d0f561f9dacaeebffa7dee9d6f40f01 (patch)
tree417aa452660ec120a0bd35220d90a84ae45e6aa7 /doc/syntax
parent8113321482debca4d4bfd77af8941a106a3350fd (diff)
* doc/syntax/calling_methods.rdoc: Link to defining methods.
* doc/syntax/methods.rdoc: Link to calling methods, fixed typo. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38843 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'doc/syntax')
-rw-r--r--doc/syntax/calling_methods.rdoc3
-rw-r--r--doc/syntax/methods.rdoc5
2 files changed, 7 insertions, 1 deletions
diff --git a/doc/syntax/calling_methods.rdoc b/doc/syntax/calling_methods.rdoc
index edb2dfe617..a011144f71 100644
--- a/doc/syntax/calling_methods.rdoc
+++ b/doc/syntax/calling_methods.rdoc
@@ -13,6 +13,9 @@ Note that the parenthesis are optional:
Except when there is difference between using and omitting parentheses, this
document uses parenthesis when arguments are present to avoid confusion.
+This section only covers calling methods. See also the {syntax documentation
+on defining methods}[rdoc-ref:syntax/methods.rdoc].
+
== Receiver
+self+ is the default receiver. If you don't specify any receiver +self+ will
diff --git a/doc/syntax/methods.rdoc b/doc/syntax/methods.rdoc
index 28311d1af6..d5d0ea402d 100644
--- a/doc/syntax/methods.rdoc
+++ b/doc/syntax/methods.rdoc
@@ -11,6 +11,9 @@ A method definition consists of the +def+ keyword, a method name, the body of
the method, then the +end+ keyword. When called the method will execute the
body of the method. This method returns +2+.
+This section only covers defining methods. See also the {syntax documentation
+on calling methods}[rdoc-ref:syntax/calling_methods.rdoc].
+
== Method Names
Method names may be one of the operators or must start a letter or a character
@@ -69,7 +72,7 @@ operators.
<code>>=</code> :: greater-than or equal
To define unary methods minus, plus, tilde and not (<code>!</code>) follow the
-operator with an <code>@</code> as in <code>+@</code> or <code>!@<code>:
+operator with an <code>@</code> as in <code>+@</code> or <code>!@</code>:
class C
def -@