diff --git a/library/Zend/Session/Service/ContainerAbstractServiceFactory.php b/library/Zend/Session/Service/ContainerAbstractServiceFactory.php
index 7ebf5ac2033..33c64518c02 100644
--- a/library/Zend/Session/Service/ContainerAbstractServiceFactory.php
+++ b/library/Zend/Session/Service/ContainerAbstractServiceFactory.php
@@ -23,17 +23,15 @@
*
* return array(
* 'session_containers' => array(
- * 'auth',
- * 'user',
- * 'captcha',
+ * 'SessionContainer\sample',
+ * 'my_sample_session_container',
+ * 'MySessionContainer',
* ),
* );
*
*
- * Services use the prefix "SessionContainer\\":
- *
*
- * $container = $services->get('SessionContainer\captcha');
+ * $container = $services->get('MySessionContainer');
*
*/
class ContainerAbstractServiceFactory implements AbstractFactoryInterface
@@ -139,8 +137,6 @@ protected function getSessionManager(ServiceLocatorInterface $services)
/**
* Normalize the container name in order to perform a lookup
*
- * Strips off the "SessionContainer\" prefix, and lowercases the name.
- *
* @param string $name
* @return string
*/