This is an automated email from the ASF dual-hosted git repository.
dehowef pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/age-website.git
The following commit(s) were added to refs/heads/master by this push:
new e2c44f32 Fixed range() function description and typos (#167)
e2c44f32 is described below
commit e2c44f320db97f4136d61c8b6a5108e194b337ba
Author: Wendel de Lana <[email protected]>
AuthorDate: Mon Jul 17 16:06:28 2023 -0700
Fixed range() function description and typos (#167)
---
docs/functions/list_functions.md | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/docs/functions/list_functions.md b/docs/functions/list_functions.md
index ba12d0c1..cb335ac2 100644
--- a/docs/functions/list_functions.md
+++ b/docs/functions/list_functions.md
@@ -77,13 +77,13 @@ Result:
## range
-range() returns a list comprising all integer values within a range bounded by
a start value start and end value end, where the difference step between any
two consecutive values is constant; i.e. an arithmetic progression. The range
is inclusive, and the arithmetic progression will therefore always contain
start and—depending on the values of start, step and end—end.
+range() returns a list comprising all integer values within a range bounded by
a start value **start** and end value **end**, where the difference **step**
between any two consecutive values is constant; i.e. an arithmetic progression.
The range is inclusive, and the arithmetic progression will therefore always
contain **start** and—depending on the values of **start**, **step** and
**end**—**end**.
Syntax:`range(start, end [, step])`
Returns:
```
-An Agtype list containing edge entities
+An Agtype list containing integer elements
```
Arguments:
@@ -109,7 +109,7 @@ Arguments:
<tr>
<td>step
</td>
- <td>A numeric expression defining the differencebetween any two consecutive
values, with adefault of 1.
+ <td>A numeric expression defining the difference between any two
consecutive values, with a default of 1.
</td>
</tr>
</table>