Skip to content

Commit

Permalink
Address editorial feedback Math section
Browse files Browse the repository at this point in the history
Signed-off-by: Melissa Vagi <vagimeli@amazon.com>
  • Loading branch information
vagimeli committed Dec 6, 2023
1 parent f84884f commit a8c3dd0
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions public/components/common/helpers/ppl_docs/functions/math.ts
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ Return type: DOUBLE
Argument type: INTEGER/LONG/FLOAT/DOUBLE
Return type: Wider type between types \`n\` and \`m\` if \`m\` is a nonzero value. \`NULL\` is returned if \`m\` equals \`0\`.
Return type: If \`m\` is a nonzero value, a type greater in size between types \`n\` and \`m\` is returned. If \`m\` equals \`0\`, \`NULL\` is returned.
**Example**
Expand Down Expand Up @@ -422,10 +422,7 @@ Return type: DOUBLE
### RAND
\`RAND()/RAND(N)\` is a function that returns a random floating-point value in the range \`0 &lt;= value &lt; 1.0\`. If integer \`N\` is specified, the seed is
initialized prior to execution. One implication of this behavior is that with
identical argument \`N\`, \`rand(N)\` returns the same value each time and thus
produces a repeatable sequence of column values.
\`RAND()/RAND(N)\` is a function that returns a random floating-point value in the range \`0 &lt;= value &lt; 1.0\`. If integer \`N\` is specified, the seed is initialized prior to execution. One implication of this behavior is that with identical argument \`N\`, \`rand(N)\` returns the same value each time and thus produces a repeatable sequence of column values.
Argument type: INTEGER
Expand Down

0 comments on commit a8c3dd0

Please sign in to comment.