diff --git a/wire/core/Pages.php b/wire/core/Pages.php index 96af5202..f8c12af6 100644 --- a/wire/core/Pages.php +++ b/wire/core/Pages.php @@ -862,10 +862,6 @@ class Pages extends Wire { * // set $page to have sort=5, moving any 5+ sort pages ahead * $pages->sort($page, 5); * - * // same as above using alternate syntax - * $page->sort = 5; - * $pages->sort($page); - * * // re-build sort values for children of $page, removing duplicates and gaps * $pages->sort($page, true); * ~~~~~