From 5d2e41c532e2b918e6fff8c3146051340fb2644d Mon Sep 17 00:00:00 2001 From: Douglas Greenshields Date: Sun, 30 Mar 2014 15:01:35 +0100 Subject: [PATCH] correct RuntimeException reference --- components/console/helpers/dialoghelper.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/console/helpers/dialoghelper.rst b/components/console/helpers/dialoghelper.rst index 42153063aa4..3abf50b4a47 100644 --- a/components/console/helpers/dialoghelper.rst +++ b/components/console/helpers/dialoghelper.rst @@ -113,7 +113,7 @@ method:: 'Please enter the name of the bundle', function ($answer) { if ('Bundle' !== substr($answer, -6)) { - throw new \RunTimeException( + throw new \RuntimeException( 'The name of the bundle should be suffixed with \'Bundle\'' ); }