Fix variable name mismatch in modf's description
Use the actual parameter name (integer_part) in the description of modf.
This commit also includes the updated rs_math.rsh.
Change-Id: I461f73478f63b315c6bf63d0ef5071d28794845f
diff --git a/scriptc/rs_math.rsh b/scriptc/rs_math.rsh
index 9b39680..653672c 100644
--- a/scriptc/rs_math.rsh
+++ b/scriptc/rs_math.rsh
@@ -2500,7 +2500,7 @@
* Returns the integral and fractional components of a number.
*
* Both components will have the same sign as x. For example, for an input of -3.72f,
- * iret will be set to -3.f and .72f will be returned.
+ * *integral_part will be set to -3.f and .72f will be returned.
*
* Parameters:
* v: Source value.