Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit00669d2

Browse files
committed
Fixed typos
1 parent0fb81cc commit00669d2

File tree

6 files changed

+9
-11
lines changed

6 files changed

+9
-11
lines changed

‎best_practices/security.rst

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ Authorization (i.e. Denying Access)
7373

7474
Symfony gives you several ways to enforce authorization, including the ``access_control``
7575
configuration in `security.yml`_, the:ref:`@Security annotation<best-practices-security-annotation>`
76-
and using:ref:`isGranted<best-practices-directy-isGranted>` on the ``security.context``
76+
and using:ref:`isGranted<best-practices-directly-isGranted>` on the ``security.context``
7777
service directly.
7878

7979
..best-practice::
@@ -204,7 +204,7 @@ Now you can reuse this method both in the template and in the security expressio
204204
<a href=""> ... </a>
205205
{% endif %}
206206

207-
.. _best-practices-directy-isGranted:
207+
.. _best-practices-directly-isGranted:
208208

209209
Checking Permissions without @Security
210210
--------------------------------------
@@ -351,9 +351,7 @@ develop `your own user provider`_ and `your own authentication provider`_.
351351
.. _`security.yml`:http://symfony.com/doc/current/reference/configuration/security.html
352352
.. _`ParamConverter`:http://symfony.com/doc/current/bundles/SensioFrameworkExtraBundle/annotations/converters.html
353353
.. _`@Security annotation`:http://symfony.com/doc/current/bundles/SensioFrameworkExtraBundle/annotations/security.html
354-
.. _`security.yml`:http://symfony.com/doc/current/reference/configuration/security.html
355354
.. _`security voter`:http://symfony.com/doc/current/cookbook/security/voters_data_permission.html
356-
.. _`Acces Control List`:http://symfony.com/doc/current/cookbook/security/acl.html
357355
.. _`ACL's`:http://symfony.com/doc/current/cookbook/security/acl.html
358356
.. _`expression`:http://symfony.com/doc/current/components/expression_language/introduction.html
359357
.. _`FOSUserBundle`:https://github.com/FriendsOfSymfony/FOSUserBundle

‎components/console/helpers/dialoghelper.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ from the command line, you need to overwrite the HelperSet used by the command::
258258

259259
$dialog = $command->getHelper('dialog');
260260
$dialog->setInputStream($this->getInputStream("Test\n"));
261-
// Equals to a userinputing "Test" and hitting ENTER
261+
// Equals to a userinputting "Test" and hitting ENTER
262262
// If you need to enter a confirmation, "yes\n" will work
263263

264264
$commandTester->execute(array('command' => $command->getName()));

‎components/translation/usage.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ Pluralization
226226
-------------
227227

228228
Message pluralization is a tough topic as the rules can be quite complex. For
229-
instance, here is themathematic representation of the Russian pluralization
229+
instance, here is themathematical representation of the Russian pluralization
230230
rules::
231231

232232
(($number % 10 == 1) && ($number % 100 != 11))

‎components/var_dumper/advanced.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,4 +235,4 @@ properties not in the class declaration).
235235

236236
..tip::
237237

238-
Beforewritting your own casters, you should check the existing ones.
238+
Beforewriting your own casters, you should check the existing ones.

‎components/var_dumper/introduction.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ DebugBundle and Twig Integration
6767

6868
The ``DebugBundle`` allows greater integration of the component into the
6969
Symfony full stack framework. It is enabled by default in the *dev* and *test*
70-
environement of the standard edition since version 2.6.
70+
environment of the standard edition since version 2.6.
7171

7272
Since generating (even debug) output in the controller or in the model
7373
of your application may just break it by e.g. sending HTTP headers or
@@ -131,7 +131,7 @@ then its dump representation::
131131

132132
..note::
133133

134-
The gray arrow is a toggle button forhidding/showing children of
134+
The gray arrow is a toggle button forhiding/showing children of
135135
nested structures.
136136

137137
..code-block::php
@@ -232,7 +232,7 @@ then its dump representation::
232232
"When a dump goes over its maximum items limit,\n"
233233
."or when some special objects are encountered,\n"
234234
."children can be replaced by an ellipsis and\n"
235-
."optionnally followed by a number that says how\n"
235+
."optionally followed by a number that says how\n"
236236
."many have been removed; `9` in this case.\n"
237237
);
238238
dump($var);

‎reference/twig_reference.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Symfony Twig Extensions
88

99
Twig is the default template engine for Symfony. By itself, it already contains
1010
a lot of built-in functions, filters, tags and tests (learn more about them
11-
from thethe`Twig Reference`_).
11+
from the `Twig Reference`_).
1212

1313
Symfony adds more custom extensions on top of Twig to integrate some components
1414
into the Twig templates. You can find more information about the custom

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp