From 13b552538af9e9794398e4a4177ba1cea04cccca Mon Sep 17 00:00:00 2001 From: Seba Gamboa Date: Tue, 20 Oct 2015 12:48:31 -0300 Subject: Remove obvious warnings from docs --- mrbgems/mruby-math/src/math.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'mrbgems/mruby-math/src') diff --git a/mrbgems/mruby-math/src/math.c b/mrbgems/mruby-math/src/math.c index 8cbc2544e..a94c48c7b 100644 --- a/mrbgems/mruby-math/src/math.c +++ b/mrbgems/mruby-math/src/math.c @@ -236,7 +236,8 @@ math_tan(mrb_state *mrb, mrb_value obj) * call-seq: * Math.asin(x) -> float * - * Computes the arc sine of x. Returns -{PI/2} .. {PI/2}. + * Computes the arc sine of x. + * @return computed value between `-(PI/2)` and `(PI/2)`. */ static mrb_value math_asin(mrb_state *mrb, mrb_value obj) @@ -276,7 +277,7 @@ math_acos(mrb_state *mrb, mrb_value obj) * call-seq: * Math.atan(x) -> float * - * Computes the arc tangent of x. Returns -{PI/2} .. {PI/2}. + * Computes the arc tangent of x. Returns `-(PI/2) .. (PI/2)`. */ static mrb_value math_atan(mrb_state *mrb, mrb_value obj) -- cgit v1.2.3