diff --git a/docs/cheat-sheet.md b/docs/cheat-sheet.md index 18edea1..4615314 100644 --- a/docs/cheat-sheet.md +++ b/docs/cheat-sheet.md @@ -168,12 +168,12 @@ See [rendering blocks with Twig Tweak](blocks.md#block-plugin) for details. ```twig {# Basic usage. #}
- {{ drupal_contextual_links('entity.view.edit_form:view=frontpage&display_id=feed_1:') }} + {{ drupal_contextual_links('entity.view.edit_form:view=frontpage:display_id=feed_1') }} {{ drupal_view('frontpage') }}
{# Multiple links. #}
- {{ drupal_contextual_links('node:node=123|block_content:block_content=123:') }} + {{ drupal_contextual_links('node:node=123:|block_content:block_content=123:') }} {{ content }}
```