Github user JonZeolla commented on a diff in the pull request:
https://github.com/apache/metron/pull/836#discussion_r149701286
--- Diff: metron-stellar/stellar-common/README.md ---
@@ -1034,15 +1035,15 @@ In the core language functions, we support basic
functional programming primitiv
See [python](https://docs.python.org/3/library/functions.html#zip)
and
[wikipedia](https://en.wikipedia.org/wiki/Convolution_(computer_science)) for
more context.
* Input:
- * list* - Lists to zip.
+ * list\*? - Lists to zip.
* Returns: The zip of the lists. The returned list is the min size of
all the lists. e.g. `ZIP( [ 1, 2 ], [ 3, 4, 5] ) == [ [1, 3], [2, 4] ]`
### `ZIP_LONGEST`
* Description: Zips lists into a single list where the ith element is an
list containing the ith items from the constituent lists.
See
[python](https://docs.python.org/3/library/itertools.html#itertools.zip_longest)
and
[wikipedia](https://en.wikipedia.org/wiki/Convolution_(computer_science)) for
more context.
* Input:
- * list* - Lists to zip.
+ * list\*? - Lists to zip.
--- End diff --
Why does this have an \*?
---