Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/documentation.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2022-10-31 17:20:28 +0300
committerbackportbot-nextcloud[bot] <backportbot-nextcloud[bot]@users.noreply.github.com>2022-10-31 17:39:55 +0300
commitac5ca9596ef4946e698d1fa8b4638a2fb5997094 (patch)
tree842cd4abe6457f3e39f3bfcc04fcad8edb00aa67
parent0ac495527236b7f55d1c2521e509bb7fbf1495c6 (diff)
Fix rendering of inline code block
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
-rw-r--r--developer_manual/basics/front-end/l10n.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/developer_manual/basics/front-end/l10n.rst b/developer_manual/basics/front-end/l10n.rst
index ad312fe6e..66333c1d9 100644
--- a/developer_manual/basics/front-end/l10n.rst
+++ b/developer_manual/basics/front-end/l10n.rst
@@ -16,7 +16,7 @@ In order to make your app translatable (internationalization), you should use Ne
PHP
^^^
-If localized strings are used in the backend code, simply inject the``OCP\IL10N`` class into your service via type hinting it in the constructor. You will automatically get the language object containing the translations of your app:
+If localized strings are used in the backend code, simply inject the ``\OCP\IL10N`` class into your service via type hinting it in the constructor. You will automatically get the language object containing the translations of your app:
.. code-block:: php