diff --git a/src/Views/ArrayIndexListView.php b/src/Views/ArrayIndexListView.php
index 70cf9b2..572605b 100644
--- a/src/Views/ArrayIndexListView.php
+++ b/src/Views/ArrayIndexListView.php
@@ -17,10 +17,11 @@
* @template T Type of array source elements.
*
*
- * subview(new IndexListSelector([0, 2, 4]));
+ *
* $view->toArray(); // [1, 3, 5]
*
*
diff --git a/src/Views/ArrayMaskView.php b/src/Views/ArrayMaskView.php
index e8c3780..b42dbd7 100644
--- a/src/Views/ArrayMaskView.php
+++ b/src/Views/ArrayMaskView.php
@@ -17,10 +17,11 @@
* @template T
*
*
- * subview(new MaskSelector([true, false, true, false, true]));
+ *
* $view->toArray(); // [1, 3, 5]
*
*
diff --git a/src/Views/ArraySliceView.php b/src/Views/ArraySliceView.php
index d25ead0..f1b89fd 100644
--- a/src/Views/ArraySliceView.php
+++ b/src/Views/ArraySliceView.php
@@ -17,10 +17,11 @@
* @template T
*
*
- * subview(new SliceSelector('::2'));
+ *
* $view->toArray(); // [1, 3, 5]
*
*