diff --git a/typo3/sysext/saltedpasswords/Documentation/DevelopersGuide/Index.rst b/typo3/sysext/saltedpasswords/Documentation/DevelopersGuide/Index.rst
index e178fa96d1ca6696595a05f73888af2dbdfbdb59..b027deb086c14fba4eec64b8a397c47320a48682 100644
--- a/typo3/sysext/saltedpasswords/Documentation/DevelopersGuide/Index.rst
+++ b/typo3/sysext/saltedpasswords/Documentation/DevelopersGuide/Index.rst
@@ -40,7 +40,7 @@ Example implementation for TYPO3 frontend:
    $password = 'XXX';
    $saltedPassword = '';
 
-       if (\TYPO3\CMS\Saltedpasswords\Utility::SaltedPasswordsUtility::isUsageEnabled('FE')) {
+       if (\TYPO3\CMS\Saltedpasswords\Utility\SaltedPasswordsUtility::isUsageEnabled('FE')) {
                $objSalt = \TYPO3\CMS\Saltedpasswords\Salt\SaltFactory::getSaltingInstance(NULL);
                if (is_object($objSalt)) {
                        $saltedPassword = $objSalt->getHashedPassword($password);