Github user robertdale commented on a diff in the pull request:
https://github.com/apache/tinkerpop/pull/829#discussion_r179166260
--- Diff: docs/src/reference/the-traversal.asciidoc ---
@@ -1515,16 +1516,17 @@
link:++http://tinkerpop.apache.org/javadocs/x.y.z/core/org/apache/tinkerpop/grem
[[min-step]]
=== Min Step
-The `min()`-step (*map*) operates on a stream of numbers and determines
which is the smallest number in the stream.
+The `min()`-step (*map*) operates on a stream of comparable objects and
determines which is the smallest object in the stream.
--- End diff --
~~smallest object~~ first object according to its natural sort order
---