diff --git a/flextype/shortcodes/SnippetsShortcode.php b/flextype/shortcodes/SnippetsShortcode.php index 20f440b2..e0c030fd 100644 --- a/flextype/shortcodes/SnippetsShortcode.php +++ b/flextype/shortcodes/SnippetsShortcode.php @@ -16,7 +16,7 @@ use Thunder\Shortcode\ShortcodeFacade; use Thunder\Shortcode\Shortcode\ShortcodeInterface; // Snippets -// Shortcode: [snippets get=snippet-name] +// Shortcode: [snippets fetch=snippet-name] Shortcodes::shortcode()->addHandler('snippets', function(ShortcodeInterface $s) { - return Snippets::get($s->getParameter('get')); + return Snippets::get($s->getParameter('fetch')); });