Callers must not expect RE2::Set match vectors to be sorted.

Change-Id: I92e950075e73f2790cea80b5eb73b9133c18b229
Reviewed-on: https://code-review.googlesource.com/9474
Reviewed-by: Paul Wankadia <[email protected]>
diff --git a/re2/set.h b/re2/set.h
index 54d75a0..c31d500 100644
--- a/re2/set.h
+++ b/re2/set.h
@@ -41,6 +41,7 @@
 
   // Match returns true if text matches any of the regexps in the set.
   // If so, it fills v (if not NULL) with the indices of the matching regexps.
+  // Callers must not expect v to be sorted.
   bool Match(const StringPiece& text, std::vector<int>* v) const;
 
  private: