summaryrefslogtreecommitdiff
path: root/object.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-04-14 04:06:52 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-04-14 04:06:52 +0000
commitda011c8311088ee53a791e4d31bf6b6c4fa96db5 (patch)
tree08e2dc9b61d6be2a9bc95dd9d800dceb064d1bdd /object.c
parentb75df4ec9f6cc7295db673769d4a59f0fbd48a61 (diff)
* array.c, enum.c, eval.c, file.c, io.c, numeric.c, object.c, prec.c,
process.c, re.c, string.c: typos in RDoc comments. [ruby-core:02783] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@6158 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'object.c')
-rw-r--r--object.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/object.c b/object.c
index 0e89b0f619..b44534fc0f 100644
--- a/object.c
+++ b/object.c
@@ -37,7 +37,7 @@ static ID id_eq, id_eql, id_inspect, id_init_copy;
* call-seq:
* obj === other => true or false
*
- * Case Equality---For class <code>Object</code>, effectivelt the same
+ * Case Equality---For class <code>Object</code>, effectively the same
* as calling <code>#==</code>, but typically overridden by descendents
* to provide meaningful semantics in <code>case</code> statements.
*/
@@ -1164,7 +1164,7 @@ sym_to_s(sym)
* call-seq:
* sym.to_sym => sym
*
- * In general, <code>to_sym</code> returns the <code>Symbol</code> correspopnding
+ * In general, <code>to_sym</code> returns the <code>Symbol</code> corresponding
* to an object. As <i>sym</i> is already a symbol, <code>self</code> is returned
* in this case.
*/