From 0ec6d1176bff3d61d61bced57f62247cf3dad4d6 Mon Sep 17 00:00:00 2001
From: Jennifer Hodgdon <yahgrp@poplarware.com>
Date: Tue, 4 Feb 2014 11:13:31 -0800
Subject: [PATCH] Issue #2186225 by lucastockmann: Fix up docsof
 EntityInterface urlInfo method

---
 core/lib/Drupal/Core/Entity/EntityInterface.php | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/core/lib/Drupal/Core/Entity/EntityInterface.php b/core/lib/Drupal/Core/Entity/EntityInterface.php
index a91b6948fa0a..6b1a58336d09 100644
--- a/core/lib/Drupal/Core/Entity/EntityInterface.php
+++ b/core/lib/Drupal/Core/Entity/EntityInterface.php
@@ -101,14 +101,14 @@ public function label();
    * example:
    * @code
    * links = {
-   *   "canonical" = "/node/{node}",
-   *   "edit-form" = "/node/{node}/edit",
-   *   "version-history" = "/node/{node}/revisions"
+   *   "canonical" = "node.view",
+   *   "edit-form" = "node.page_edit",
+   *   "version-history" = "node.revision_overview"
    * }
    * @endcode
    * or specified in a callback function set like:
    * @code
-   * uri_callback = "contact_category_uri",
+   * uri_callback = "comment_uri",
    * @endcode
    * If the path is not set in the links array, the uri_callback function is
    * used for setting the path. If this does not exist and the link relationship
-- 
GitLab