From b252392fd2b779439724f92c18025a4631a08e5e Mon Sep 17 00:00:00 2001 From: Simon Schaufelberger <simonschaufi+typo3@gmail.com> Date: Fri, 6 Sep 2024 11:20:58 +0200 Subject: [PATCH] [DOCS] Fix typos in changelogs Resolves: #104843 Releases: main Change-Id: I38d9dd2bb2562af43866c57f10b245960a6670d0 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/85911 Tested-by: core-ci <typo3@b13.com> Tested-by: Simon Praetorius <simon@praetorius.me> Tested-by: Lina Wolf <112@linawolf.de> Reviewed-by: Lina Wolf <112@linawolf.de> Reviewed-by: Simon Praetorius <simon@praetorius.me> --- ...stIdAsPublicVisibleErrorReferenceInErrorHandlersOutput.rst | 2 +- ...precation-104108-TableDependantDefinitionOfColumnsOnly.rst | 2 +- ...ature-104220-MakeParseFuncAllowTagsAndDenyTagsOptional.rst | 3 +-- .../13.3/Deprecation-104789-FluidVariablesTrueFalseNull.rst | 2 +- .../Feature-104631-AddUNIONClauseSupportToTheQueryBuilder.rst | 4 ++-- ...04832-PSR-14EventToAlterTheResultsOfPageTreeRepository.rst | 2 +- 6 files changed, 7 insertions(+), 8 deletions(-) diff --git a/typo3/sysext/core/Documentation/Changelog/13.1/Feature-103441-RequestIdAsPublicVisibleErrorReferenceInErrorHandlersOutput.rst b/typo3/sysext/core/Documentation/Changelog/13.1/Feature-103441-RequestIdAsPublicVisibleErrorReferenceInErrorHandlersOutput.rst index 675e7243db00..5cfe8015fa97 100644 --- a/typo3/sysext/core/Documentation/Changelog/13.1/Feature-103441-RequestIdAsPublicVisibleErrorReferenceInErrorHandlersOutput.rst +++ b/typo3/sysext/core/Documentation/Changelog/13.1/Feature-103441-RequestIdAsPublicVisibleErrorReferenceInErrorHandlersOutput.rst @@ -20,7 +20,7 @@ occurred!" followed by a timestamp and a hash. This is part of log messages. Whenever an error/exception is logged, the log message contains the request ID. With this the request ID is also shown in web output of error/exception handlers - as public visible error reference. +as public visible error reference. Impact diff --git a/typo3/sysext/core/Documentation/Changelog/13.2/Deprecation-104108-TableDependantDefinitionOfColumnsOnly.rst b/typo3/sysext/core/Documentation/Changelog/13.2/Deprecation-104108-TableDependantDefinitionOfColumnsOnly.rst index 3eedc43248b6..c9b07f64541c 100644 --- a/typo3/sysext/core/Documentation/Changelog/13.2/Deprecation-104108-TableDependantDefinitionOfColumnsOnly.rst +++ b/typo3/sysext/core/Documentation/Changelog/13.2/Deprecation-104108-TableDependantDefinitionOfColumnsOnly.rst @@ -19,7 +19,7 @@ by adding the fields to be rendered as a comma-separated list. However, besides rendering only records form a single table, the edit form is also capable of rendering records of different tables in the same request. -Therefore, the limit fields funcionality has been extended to allow +Therefore, the limit fields functionality has been extended to allow set the fields to be rendered on a per-table basis. This means that passing just a comma-separated list of fields as value for `columnsOnly` has been deprecated. diff --git a/typo3/sysext/core/Documentation/Changelog/13.2/Feature-104220-MakeParseFuncAllowTagsAndDenyTagsOptional.rst b/typo3/sysext/core/Documentation/Changelog/13.2/Feature-104220-MakeParseFuncAllowTagsAndDenyTagsOptional.rst index c4e68a9e6032..f3a01752c6de 100644 --- a/typo3/sysext/core/Documentation/Changelog/13.2/Feature-104220-MakeParseFuncAllowTagsAndDenyTagsOptional.rst +++ b/typo3/sysext/core/Documentation/Changelog/13.2/Feature-104220-MakeParseFuncAllowTagsAndDenyTagsOptional.rst @@ -63,7 +63,6 @@ The example above only allows :html:`<u>` and encodes any other tag. } The example above allows all tags, the new :typoscript:`allowTags = *` -takes precendence over :typoscript:`denyTags = *`. - +takes precedence over :typoscript:`denyTags = *`. .. index:: Frontend, TypoScript, ext:core diff --git a/typo3/sysext/core/Documentation/Changelog/13.3/Deprecation-104789-FluidVariablesTrueFalseNull.rst b/typo3/sysext/core/Documentation/Changelog/13.3/Deprecation-104789-FluidVariablesTrueFalseNull.rst index 1b4006e9a858..45d0ee580c0f 100644 --- a/typo3/sysext/core/Documentation/Changelog/13.3/Deprecation-104789-FluidVariablesTrueFalseNull.rst +++ b/typo3/sysext/core/Documentation/Changelog/13.3/Deprecation-104789-FluidVariablesTrueFalseNull.rst @@ -34,7 +34,7 @@ This should rarely happen, as it would involve using :php:`$view->assign('true', Migration ========= -Template code using these variables should be adjusted to use diffferent variable names. +Template code using these variables should be adjusted to use different variable names. In Fluid v4, the variables will contain their matching PHP counterparts. .. index:: Fluid, NotScanned, ext:fluid diff --git a/typo3/sysext/core/Documentation/Changelog/13.3/Feature-104631-AddUNIONClauseSupportToTheQueryBuilder.rst b/typo3/sysext/core/Documentation/Changelog/13.3/Feature-104631-AddUNIONClauseSupportToTheQueryBuilder.rst index dcfd6bd5673b..329e8be6365a 100644 --- a/typo3/sysext/core/Documentation/Changelog/13.3/Feature-104631-AddUNIONClauseSupportToTheQueryBuilder.rst +++ b/typo3/sysext/core/Documentation/Changelog/13.3/Feature-104631-AddUNIONClauseSupportToTheQueryBuilder.rst @@ -42,11 +42,11 @@ which introduces two new API method on the QueryBuilder: * :php:`union(string|QueryBuilder $part)` to create first UNION query part * :php:`addUnion(string|QueryBuilder $part, UnionType $type = UnionType::DISTINCT)` - to add addtional :sql:`UNION (ALL|DISTINCT)` query parts with the selected union + to add additional :sql:`UNION (ALL|DISTINCT)` query parts with the selected union query type. TYPO3 decorates the Doctrine DBAL QueryBuilder to provide for most API methods automatic -quoting of identifiers and values **and** to appliy database restrictions automatically +quoting of identifiers and values **and** to apply database restrictions automatically for :sql:`SELECT` queries. The Doctrine DBAL API has been adopted now to provide the same surface for the diff --git a/typo3/sysext/core/Documentation/Changelog/13.3/Feature-104832-PSR-14EventToAlterTheResultsOfPageTreeRepository.rst b/typo3/sysext/core/Documentation/Changelog/13.3/Feature-104832-PSR-14EventToAlterTheResultsOfPageTreeRepository.rst index 6497a6cc9750..219df2c05be2 100644 --- a/typo3/sysext/core/Documentation/Changelog/13.3/Feature-104832-PSR-14EventToAlterTheResultsOfPageTreeRepository.rst +++ b/typo3/sysext/core/Documentation/Changelog/13.3/Feature-104832-PSR-14EventToAlterTheResultsOfPageTreeRepository.rst @@ -26,7 +26,7 @@ Example ======= The event listener class, using the PHP attribute :php:`#[AsEventListener]` for -registration, will rmoeve any children for displaying for the page with the +registration, will remove any children for displaying for the page with the UID 123: .. code-block:: php -- GitLab