From 9722ab471b2cabc20610785194bd9d1e00bef376 Mon Sep 17 00:00:00 2001
From: Simon Schaufelberger <noreply@example.com>
Date: Fri, 27 Aug 2021 17:40:08 +0000
Subject: [PATCH] [TASK] Remove unnecessary back tick

Revert back tick that was introduced in commit 3b03ef460d80c851c01873e250299bc277cad781

Releases: master
Resolves: #95018
Change-Id: I0ceb8c8f46a2bdd601d9ce0b250fda94e12e3735
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/70800
Tested-by: core-ci <typo3@b13.com>
Tested-by: Christian Kuhn <lolli@schwarzbu.ch>
Reviewed-by: Christian Kuhn <lolli@schwarzbu.ch>
---
 ...n-92947-DeprecateTYPO3_MODEAndTYPO3_REQUESTTYPEConstants.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/typo3/sysext/core/Documentation/Changelog/11.0/Deprecation-92947-DeprecateTYPO3_MODEAndTYPO3_REQUESTTYPEConstants.rst b/typo3/sysext/core/Documentation/Changelog/11.0/Deprecation-92947-DeprecateTYPO3_MODEAndTYPO3_REQUESTTYPEConstants.rst
index 9e134aebe00b..7e53dbff7b49 100644
--- a/typo3/sysext/core/Documentation/Changelog/11.0/Deprecation-92947-DeprecateTYPO3_MODEAndTYPO3_REQUESTTYPEConstants.rst
+++ b/typo3/sysext/core/Documentation/Changelog/11.0/Deprecation-92947-DeprecateTYPO3_MODEAndTYPO3_REQUESTTYPEConstants.rst
@@ -83,7 +83,7 @@ security gate as first line. This typically looks like::
 These calls should be changed to use the new constant :php:`TYPO3` instead. It is simply defined
 to :php:`true` in early TYPO3 bootstrap and can be used for this purpose::
 
-   `defined('TYPO3') or die();
+   defined('TYPO3') or die();
 
 
 Other usages of :php:`TYPO3_MODE` and :php:`TYPO3_REQUESTTYPE` in bootstrap script files
-- 
GitLab