fix comments
authorTudor Bosman <tudorb@fb.com>
Tue, 13 Nov 2012 20:45:51 +0000 (12:45 -0800)
committerJordan DeLong <jdelong@fb.com>
Sun, 16 Dec 2012 22:44:35 +0000 (14:44 -0800)
Test Plan: no

Reviewed By: tjackson@fb.com

FB internal diff: D629502

folly/experimental/Gen-inl.h

index 95f0b76f658b052aca8cc6b8a945e592ad2fd8b5..7a93d56b8ee73179312c0c0c48acf340fdaf4ca9 100644 (file)
@@ -1307,7 +1307,7 @@ public:
 };
 
 /**
- * RangeConcat - For flattening generators of generators.
+ * RangeConcat - For flattening generators of iterables.
  *
  * This type is usually used through the 'rconcat' static value, like:
  *
@@ -1370,16 +1370,7 @@ public:
 } //::detail
 
 /**
- * Gen<T> - For wrapping template types in simple polymorphic wrapper.
- *
- * This type is usually used through the 'rconcat' static value, like:
- *
- *   map<int, vector<int>> adjacency;
- *   auto sinks =
- *       from(adjacency)
- *     | get<1>()
- *     | rconcat()
- *     | as<std::set>();
+ * VirtualGen<T> - For wrapping template types in simple polymorphic wrapper.
  **/
 template<class Value>
 class VirtualGen : public GenImpl<Value, VirtualGen<Value>> {