Skip to content

Commit 3992be5

Browse files
blue-eyesfabpot
authored andcommitted
Fixed closed parenthesis '.)' -> ').'
1 parent d5f8291 commit 3992be5

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

contributing/code/patches.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ topic branch:
6767
ticket number is a good convention for bug fixes).
6868

6969
The above command automatically switches the code to the newly created branch
70-
(check the branch you are working on with `git branch`.)
70+
(check the branch you are working on with `git branch`).
7171

7272
Work on the code as much as you want and commit as much as you want; but keep
7373
in mind the following:

guides/cache/http.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ header when none is set by the developer by following these rules:
6060

6161
* But if at least one ``Cache-Control`` directive is set, and no 'public' or
6262
``private`` directives have been explicitly added, Symfony2 adds the
63-
``private`` directive automatically (except when ``s-maxage`` is set.)
63+
``private`` directive automatically (except when ``s-maxage`` is set).
6464

6565
.. tip::
6666

@@ -232,7 +232,7 @@ issue. Under this model, you mainly save bandwidth as the representation is
232232
not sent twice to the same client (a 304 response is sent instead). But if you
233233
design your application carefully, you might be able to get the bare minimum
234234
data needed to send a 304 response and save CPU also; and if needed, perform
235-
the more heavy tasks (see below for an implementation example.)
235+
the more heavy tasks (see below for an implementation example).
236236

237237
.. index::
238238
single: Cache; Etag header
@@ -399,7 +399,7 @@ Public vs Private Responses
399399

400400
As explained at the beginning of this document, Symfony2 is very conservative
401401
and makes all Responses private by default (the exact rules are described
402-
there.)
402+
there).
403403

404404
If you want to use a shared cache, you must remember to explicitly add the
405405
``public`` directive to ``Cache-Control``::
@@ -619,7 +619,7 @@ standalone is ``false``.
619619

620620
Symfony2 detects if a gateway cache supports ESI via another Akamaï
621621
specification that is supported out of the box by the Symfony2 reverse
622-
proxy (a working configuration for Varnish is also provided below.)
622+
proxy (a working configuration for Varnish is also provided below).
623623

624624
For the ESI include tag to work properly, you must define the ``_internal``
625625
route:

guides/security/authentication.rst

+5-5
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ basic authentication:
7575
Each firewall configuration is activated when the incoming request matches the
7676
regular expression defined by the ``pattern`` setting. This pattern must match
7777
the request path info (``preg_match('#^'.PATTERN_VALUE.'$#',
78-
$request->getPathInfo())``.)
78+
$request->getPathInfo())``).
7979

8080
.. tip::
8181

@@ -155,7 +155,7 @@ X.509 certificate, an Authorization HTTP header, or use a form to login.
155155
authentication mechanisms, Symfony2 automatically defines a default entry
156156
point (in the example above, the login form; but if the user send an
157157
Authorization HTTP header with wrong credentials, Symfony2 will use the
158-
HTTP basic entry point.)
158+
HTTP basic entry point).
159159

160160
.. note::
161161

@@ -499,7 +499,7 @@ working configuration for Apache:
499499
</VirtualHost>
500500
501501
By default, the username is the email declared in the certificate (the value
502-
of the ``SSL_CLIENT_S_DN_Email`` environment variable.)
502+
of the ``SSL_CLIENT_S_DN_Email`` environment variable).
503503

504504
.. tip::
505505

@@ -549,7 +549,7 @@ restricted by a more restrictive access control rule:
549549
As anonymous users are authenticated, the ``isAuthenticated()`` method returns
550550
``true``. To check is the user is anonymous, check for the
551551
``IS_AUTHENTICATED_ANONYMOUSLY`` role instead (note that all non-anonymous
552-
users have the ``IS_AUTHENTICATED_FULLY`` role.)
552+
users have the ``IS_AUTHENTICATED_FULLY`` role).
553553

554554
.. index::
555555
single: Security; Stateless Authentication
@@ -606,7 +606,7 @@ Impersonating a User
606606

607607
Sometimes, it's useful to be able to switch from one user to another without
608608
having to logout and login again (for instance when you are debugging or try
609-
to understand a bug a user see and you cannot reproduce.) This can be easily
609+
to understand a bug a user see and you cannot reproduce). This can be easily
610610
done by activating the ``switch-user`` listener:
611611

612612
.. configuration-block::

guides/security/overview.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ providing authentication and authorization.
99

1010
*Authentication* ensures that the user is who he claims to be. *Authorization*
1111
refers to the process of deciding whether a user is allowed to perform an
12-
action or not (authorization comes after authentication.)
12+
action or not (authorization comes after authentication).
1313

1414
This document is a quick overview of these main concepts, but the real power
1515
is distilled in three other documents: :doc:`Users </guides/security/users>`,

guides/security/users.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ For most use case, use
102102

103103
When encoding your passwords, it's better to also define a unique salt per user
104104
(the ``getSalt()`` method can return the primary key if users are persisted in
105-
a database for instance.)
105+
a database for instance).
106106

107107
.. index::
108108
single: Security; AdvancedAccountInterface
@@ -416,7 +416,7 @@ Roles
416416
A User can have as many roles as needed. Roles are usually defined as strings,
417417
but they can be any object implementing
418418
:class:`Symfony\\Component\\Security\\Role\\RoleInterface` (roles are always
419-
objects internally.) Roles defined as strings should begin with the ``ROLE_``
419+
objects internally). Roles defined as strings should begin with the ``ROLE_``
420420
prefix to be automatically managed by Symfony2.
421421

422422
The roles are used by the access decision manager to secure resources. Read

guides/translation.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ Store translations for messages found in a bundle under the
9090

9191
Each message file must be named according to the following pattern:
9292
``domain.locale.loader`` (the domain name, followed by a dot (``.``), followed
93-
by the locale name, followed by a dot (``.``), followed by the loader name.)
93+
by the locale name, followed by a dot (``.``), followed by the loader name).
9494

9595
The loader can be the name of any registered loader. By default, Symfony2
9696
provides the following loaders:

0 commit comments

Comments
 (0)