diff --git a/user-manual/html/_sources/index.txt b/user-manual/html/_sources/index.txt
index 10c82bc524a27fda385ab6d836b8919eaea967e4..6914249a67074ba629fb599286bc3cf4850b2385 100644
--- a/user-manual/html/_sources/index.txt
+++ b/user-manual/html/_sources/index.txt
@@ -587,9 +587,9 @@ The data set can also be sliced to access blocks of elements in a single call, w
   // float *data = new float[3 * 3]     data
   float data[3][3];
 
-  d.get2D( pos, 3, 3, &data[0][0] );
+  d.get2D( pos, &data[0][0], 3, 3 );
   data[0][0] = 1.0;
-  d.set2D( pos, 3, 3, &data[0][0] );
+  d.set2D( pos, &data[0][0], 3, 3 );
 
   cout << "Element [1,2] = " << d.getScalar(pos) << endl;
 
diff --git a/user-manual/html/genindex.html b/user-manual/html/genindex.html
index 23944c95efe5da45c6eea5c033c5ed5b9a5897fe..d457dfbadfc6ce9053800fdd2cc6ef0f013121f2 100644
--- a/user-manual/html/genindex.html
+++ b/user-manual/html/genindex.html
@@ -88,7 +88,7 @@
       </ul>
     </div>
     <div class="footer">
-        &copy; Copyright 2012, Jan David Mol, Alexander van Amesfoort, Lars Baehren.
+        &copy; Copyright 2011-2012, Jan David Mol, Alexander S. van Amesfoort, Lars Baehren.
       Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
     </div>
   </body>
diff --git a/user-manual/html/index.html b/user-manual/html/index.html
index e384f705a3e071a6d0b9456c54ccf12d403f8d07..409d9dc66592e6911b8060dc8d0caa270ed18200 100644
--- a/user-manual/html/index.html
+++ b/user-manual/html/index.html
@@ -651,9 +651,9 @@ cout &lt;&lt; "Element [1,2] = " &lt;&lt; d.getScalar(pos) &lt;&lt; endl;
 // float *data = new float[3 * 3]     data
 float data[3][3];
 
-d.get2D( pos, 3, 3, &amp;data[0][0] );
+d.get2D( pos, &amp;data[0][0], 3, 3 );
 data[0][0] = 1.0;
-d.set2D( pos, 3, 3, &amp;data[0][0] );
+d.set2D( pos, &amp;data[0][0], 3, 3 );
 
 cout &lt;&lt; "Element [1,2] = " &lt;&lt; d.getScalar(pos) &lt;&lt; endl;
 
@@ -979,7 +979,7 @@ for name in f.nodeNames():
       </ul>
     </div>
     <div class="footer">
-        &copy; Copyright 2012, Jan David Mol, Alexander van Amesfoort, Lars Baehren.
+        &copy; Copyright 2011-2012, Jan David Mol, Alexander S. van Amesfoort, Lars Baehren.
       Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
     </div>
   </body>
diff --git a/user-manual/html/search.html b/user-manual/html/search.html
index 284639f4bdd2197f04b727469d5e788217663e71..c5f09a13c55f9518a278348f5e34904a45460c1a 100644
--- a/user-manual/html/search.html
+++ b/user-manual/html/search.html
@@ -92,7 +92,7 @@
       </ul>
     </div>
     <div class="footer">
-        &copy; Copyright 2012, Jan David Mol, Alexander van Amesfoort, Lars Baehren.
+        &copy; Copyright 2011-2012, Jan David Mol, Alexander S. van Amesfoort, Lars Baehren.
       Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3.
     </div>
   </body>