summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-05-31 07:04:33 +0000
committerzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-05-31 07:04:33 +0000
commitacae96deb7a7f21f1178cd9b8f22f664e49f7f94 (patch)
treeaed1dd973d7f6466a9ab324333f8ea68007b89a8
parentee0478bce90fb48964490487c8182f819d8e57a7 (diff)
* object.c, proc.c: s/call_seq/call-seq in rdoc. [Fix GH-322]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40997 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--object.c4
-rw-r--r--proc.c2
3 files changed, 7 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index e921cd8814..a412070715 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Fri May 31 16:03:23 2013 Zachary Scott <zachary@zacharyscott.net>
+
+ * object.c, proc.c: s/call_seq/call-seq in rdoc. [Fix GH-322]
+
Fri May 31 15:56:36 2013 Zachary Scott <zachary@zacharyscott.net>
* ext/openssl/ossl_ssl.c: Add missing paren in rdoc [Fix GH-321]
diff --git a/object.c b/object.c
index be53703ae3..0da87b079b 100644
--- a/object.c
+++ b/object.c
@@ -1323,7 +1323,7 @@ false_xor(VALUE obj, VALUE obj2)
}
/*
- * call_seq:
+ * call-seq:
* nil.nil? -> true
*
* Only the object <i>nil</i> responds <code>true</code> to <code>nil?</code>.
@@ -1336,7 +1336,7 @@ rb_true(VALUE obj)
}
/*
- * call_seq:
+ * call-seq:
* nil.nil? -> true
* <anything_else>.nil? -> false
*
diff --git a/proc.c b/proc.c
index 3731c69820..605e622a91 100644
--- a/proc.c
+++ b/proc.c
@@ -2118,7 +2118,7 @@ method_proc(VALUE method)
}
/*
- * call_seq:
+ * call-seq:
* local_jump_error.exit_value -> obj
*
* Returns the exit value associated with this +LocalJumpError+.