clarification regarding STL container support
diff --git a/docs/advanced.rst b/docs/advanced.rst
index aa52a4c..6f02c71 100644
--- a/docs/advanced.rst
+++ b/docs/advanced.rst
@@ -357,14 +357,14 @@
 ===========================
 
 When including the additional header file :file:`pybind11/stl.h`, conversions
-between ``std::vector<>`` and ``std::map<>`` and the Python ``list`` and
-``dict`` data structures are automatically enabled. The types ``std::pair<>``
-and ``std::tuple<>`` are already supported out of the box with just the core
-:file:`pybind11/pybind11.h` header.
+between ``std::vector<>``, ``std::map<>``, and ``std::map<>`` and the Python
+``list``, ``set`` and ``dict`` data structures are automatically enabled. The
+types ``std::pair<>`` and ``std::tuple<>`` are already supported out of the box
+with just the core :file:`pybind11/pybind11.h` header.
 
 .. note::
 
-    Arbitrary nesting of any of these types is explicitly permitted.
+    Arbitrary nesting of any of these types is supported.
 
 .. seealso::