diff options
author | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-11-03 17:46:28 +0000 |
---|---|---|
committer | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-11-03 17:46:28 +0000 |
commit | 3b50d03ae9c188fdb90ee7a625ba155f665aa8e0 (patch) | |
tree | 6c83191a7891bfb4449e4c61bcf944ae968319b7 /complex.c | |
parent | 719e53d806d4ccc8ff28206dfb98cc8e75a2b3c1 (diff) | |
download | ruby-3b50d03ae9c188fdb90ee7a625ba155f665aa8e0.tar.gz ruby-3b50d03ae9c188fdb90ee7a625ba155f665aa8e0.tar.xz ruby-3b50d03ae9c188fdb90ee7a625ba155f665aa8e0.zip |
fix typos.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25635 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'complex.c')
-rw-r--r-- | complex.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1051,9 +1051,9 @@ nucomp_polar(VALUE self) /* * call-seq: * cmp.conj -> complex - * cmp.conjucate -> complex + * cmp.conjugate -> complex * - * Returns the complex conjucate. + * Returns the complex conjugate. */ static VALUE nucomp_conj(VALUE self) @@ -1590,7 +1590,7 @@ string_to_c_strict(VALUE self) * * Returns a complex which denotes the string form. The parser * ignores leading whitespaces and trailing garbage. Any digit - * sequences can be separeted by an underscore. Returns zero for null + * sequences can be separated by an underscore. Returns zero for null * or garbage string. * * For example: @@ -1793,7 +1793,7 @@ numeric_polar(VALUE self) /* * call-seq: * num.conj -> self - * num.conjucate -> self + * num.conjugate -> self * * Returns self. */ |