diff --git a/typo3/sysext/backend/Classes/Utility/BackendUtility.php b/typo3/sysext/backend/Classes/Utility/BackendUtility.php
index a9956b565d8d3efeb1a16dd1e632b3968243041a..07a5fefd7c26b2dfa5ac72667629153d824bf174 100644
--- a/typo3/sysext/backend/Classes/Utility/BackendUtility.php
+++ b/typo3/sysext/backend/Classes/Utility/BackendUtility.php
@@ -692,7 +692,6 @@ class BackendUtility
      *
      * @param int $id Page uid for which to create Page TSconfig
      * @return array Page TSconfig
-     * @see \TYPO3\CMS\Core\TypoScript\Parser\TypoScriptParser
      */
     public static function getPagesTSconfig($id)
     {
diff --git a/typo3/sysext/core/Classes/Configuration/TypoScript/ConditionMatching/AbstractConditionMatcher.php b/typo3/sysext/core/Classes/Configuration/TypoScript/ConditionMatching/AbstractConditionMatcher.php
index 0a294f84fe4031e2aec36cb71b76272a36267acb..e997f91d30565c04eb1fb2d34d67d520c0bf4a27 100644
--- a/typo3/sysext/core/Classes/Configuration/TypoScript/ConditionMatching/AbstractConditionMatcher.php
+++ b/typo3/sysext/core/Classes/Configuration/TypoScript/ConditionMatching/AbstractConditionMatcher.php
@@ -197,8 +197,8 @@ abstract class AbstractConditionMatcher implements LoggerAwareInterface, Conditi
      */
     protected function evaluateExpression(string $expression): bool
     {
-        // The TypoScript [ELSE] condition is not known by the Symfony Expression Language
-        // and must not be evaluated. If/else logic is handled in TypoScriptParser.
+        // The TypoScript [ELSE] condition is not known by the Symfony Expression Language and must not be evaluated.
+        // This is handled in the TypoScript parser tree builder logic.
         if (strtoupper($expression) === 'ELSE') {
             return false;
         }
diff --git a/typo3/sysext/core/Configuration/DefaultConfigurationDescription.yaml b/typo3/sysext/core/Configuration/DefaultConfigurationDescription.yaml
index 5f02d9b6fea732ff3de83dcfbafc07665e76df92..c8fdb3fb57f9dbbe96aee00bca0af87fb461ee97 100644
--- a/typo3/sysext/core/Configuration/DefaultConfigurationDescription.yaml
+++ b/typo3/sysext/core/Configuration/DefaultConfigurationDescription.yaml
@@ -393,7 +393,7 @@ FE:
     items:
         addAllowedPaths:
             type: list
-            description: 'Additional relative paths (comma-list) to allow TypoScript resources be in. Should be prepended with ''/''. If not, then any path where the first part is like this path will match. That is: ''myfolder/ , myarchive'' will match eg. ''myfolder/'', ''myarchive/'', ''myarchive_one/'', ''myarchive_2/'' ... No check is done to see if this directory actually exists in the root of the site. Paths are matched by simply checking if these strings equals the first part of any TypoScript resource filepath. (See class template, function init() in <code>\TYPO3\CMS\Core\TypoScript\Parser\TypoScriptParser)</code>'
+            description: 'Additional relative paths resources are allowed to be placed. Used in a couple of Frontend related places for images and TypoScript. Should be prepended with ''/''. If not, then any path where the first part is like this path will match. That is: ''myfolder/ , myarchive'' will match eg. ''myfolder/'', ''myarchive/'', ''myarchive_one/'', ''myarchive_2/''. No check is done to see if this directory actually exists in the root of the site.'
         debug:
             type: bool
             description: 'If enabled, the total parsetime of the page is added as HTTP response header "X-TYPO3-Parsetime". This can also be enabled/disabled via the TypoScript option <code>config.debug = 0</code>.'