diff --git a/docs/en/02_Developer_Guides/02_Controllers/01_Introduction.md b/docs/en/02_Developer_Guides/02_Controllers/01_Introduction.md index 8b3819ecc..e631a7ee0 100644 --- a/docs/en/02_Developer_Guides/02_Controllers/01_Introduction.md +++ b/docs/en/02_Developer_Guides/02_Controllers/01_Introduction.md @@ -169,7 +169,7 @@ as well as give other features in SilverStripe the ability to influence link beh public function Link($action = null) { // Construct link with graceful handling of GET parameters - $link = Controller::join_links('teams', $ction); + $link = Controller::join_links('teams', $action); // Allow Versioned and other extension to update $link by reference. $this->extend('updateLink', $link, $action);