aboutsummaryrefslogtreecommitdiffstats
path: root/math.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-06-02 05:59:40 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-06-02 05:59:40 +0000
commit021c2102dc64ef86c142051bd0d20fc0ff2814fb (patch)
tree84d37972fb04456ccb065151cb9e11c2e115c2b7 /math.c
parent78c04602ad31d47d66c5d3fec703d05e6ac116ad (diff)
downloadruby-021c2102dc64ef86c142051bd0d20fc0ff2814fb.tar.gz
math.c: ASCII minus
* math.c: use ASCII minus (-) instead of U+2212. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41029 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'math.c')
-rw-r--r--math.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/math.c b/math.c
index 19001b4429..d0a179159c 100644
--- a/math.c
+++ b/math.c
@@ -40,7 +40,7 @@ VALUE rb_eMathDomainError;
* Computes the arc tangent given +y+ and +x+.
* Returns a Float in the range -PI..PI.
*
- * Domain: (−INFINITY, INFINITY)
+ * Domain: (-INFINITY, INFINITY)
*
* Codomain: [-PI, PI]
*
@@ -86,7 +86,7 @@ math_atan2(VALUE obj, VALUE y, VALUE x)
* Computes the cosine of +x+ (expressed in radians).
* Returns a Float in the range -1.0..1.0.
*
- * Domain: (−INFINITY, INFINITY)
+ * Domain: (-INFINITY, INFINITY)
*
* Codomain: [-1, 1]
*
@@ -108,7 +108,7 @@ math_cos(VALUE obj, VALUE x)
* Computes the sine of +x+ (expressed in radians).
* Returns a Float in the range -1.0..1.0.
*
- * Domain: (−INFINITY, INFINITY)
+ * Domain: (-INFINITY, INFINITY)
*
* Codomain: [-1, 1]
*
@@ -130,9 +130,9 @@ math_sin(VALUE obj, VALUE x)
*
* Computes the tangent of +x+ (expressed in radians).
*
- * Domain: (−INFINITY, INFINITY)
+ * Domain: (-INFINITY, INFINITY)
*
- * Codomain: (−INFINITY, INFINITY)
+ * Codomain: (-INFINITY, INFINITY)
*
* Math.tan(0) #=> 0.0
*
@@ -204,7 +204,7 @@ math_asin(VALUE obj, VALUE x)
*
* Computes the arc tangent of +x+. Returns -PI/2..PI/2.
*
- * Domain: (−INFINITY, INFINITY)
+ * Domain: (-INFINITY, INFINITY)
*
* Codomain: (-PI/2, PI/2)
*
@@ -232,7 +232,7 @@ cosh(double x)
*
* Computes the hyperbolic cosine of +x+ (expressed in radians).
*
- * Domain: (−INFINITY, INFINITY)
+ * Domain: (-INFINITY, INFINITY)
*
* Codomain: [1, INFINITY)
*
@@ -261,9 +261,9 @@ sinh(double x)
*
* Computes the hyperbolic sine of +x+ (expressed in radians).
*
- * Domain: (−INFINITY, INFINITY)
+ * Domain: (-INFINITY, INFINITY)
*
- * Codomain: (−INFINITY, INFINITY)
+ * Codomain: (-INFINITY, INFINITY)
*
* Math.sinh(0) #=> 0.0
*
@@ -290,9 +290,9 @@ tanh(double x)
*
* Computes the hyperbolic tangent of +x+ (expressed in radians).
*
- * Domain: (−INFINITY, INFINITY)
+ * Domain: (-INFINITY, INFINITY)
*
- * Codomain: (−1, 1)
+ * Codomain: (-1, 1)
*
* Math.tanh(0) #=> 0.0
*