diff --git a/doc/istl/comm/buildindexset.hh b/doc/istl/comm/buildindexset.hh
index c0b612453d50fbca68e8acbe3edc8245418b924f..e34e0ea610990b581ba3692e4a7e0df820f05472 100644
--- a/doc/istl/comm/buildindexset.hh
+++ b/doc/istl/comm/buildindexset.hh
@@ -22,7 +22,7 @@ typedef Dune::ParallelLocalIndex<Flag> LocalIndex;
  * @param indexSet The index set to build.
  */
 template<class TG, int N>
-void build(Dune::IndexSet<TG,LocalIndex,N>& indexSet)
+void build(Dune::ParallelIndexSet<TG,LocalIndex,N>& indexSet)
 {
   //
   // The number of processes
diff --git a/doc/istl/comm/indexset.cc b/doc/istl/comm/indexset.cc
index 67e9b1b10d21e1cc4d38d849b7d854d09b3ed400..6d47d469e4337fd22d94f7b022c397a7c1098052 100644
--- a/doc/istl/comm/indexset.cc
+++ b/doc/istl/comm/indexset.cc
@@ -30,10 +30,10 @@ int main(int argc, char **argv)
 
   // The index set we use to identify the local indices with the globally
   // unique ones
-  typedef Dune::IndexSet<GlobalIndex,LocalIndex,100> IndexSet;
+  typedef Dune::ParallelIndexSet<GlobalIndex,LocalIndex,100> ParallelIndexSet;
 
   // The index set
-  IndexSet indexSet;
+  ParallelIndexSet indexSet;
 
   build(indexSet);
 
diff --git a/doc/istl/comm/reverse.hh b/doc/istl/comm/reverse.hh
index abe015a75c9f8d3fcaede99df29ca34ec0f5777c..f5df0b771da50a1b2ef1a1cc769701431a8f3d3f 100644
--- a/doc/istl/comm/reverse.hh
+++ b/doc/istl/comm/reverse.hh
@@ -15,10 +15,10 @@
  * @param indexSet The index set to reverse.
  */
 template<typename TG, typename TL, int N>
-void reverseLocalIndex(Dune::IndexSet<TG,TL,N>& indexSet)
+void reverseLocalIndex(Dune::ParallelIndexSet<TG,TL,N>& indexSet)
 {
   // reverse the local indices
-  typedef typename Dune::IndexSet<TG,TL,N>::iterator iterator;
+  typedef typename Dune::ParallelIndexSet<TG,TL,N>::iterator iterator;
 
   iterator end = indexSet.end();
   size_t maxLocal = 0;