Skip to content

[docs] typofixes #15882

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 4, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions components/cache/adapters/couchbasebucket_adapter.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.. index::
single: Cache Pool
single: Couchabase Cache
single: Couchbase Cache

.. _couchbase-adapter:

Expand Down Expand Up @@ -60,7 +60,7 @@ helper method allows creating and configuring a `Couchbase Bucket`_ class instan
'couchbase://localhost'
// the DSN can include config options (pass them as a query string):
// 'couchbase://localhost:11210?operationTimeout=10'
// 'couchbase://localhost:11210?operationTimeout=10&configTimout=20'
// 'couchbase://localhost:11210?operationTimeout=10&configTimeout=20'
);

// pass an array of DSN strings to register multiple servers with the client
Expand Down
2 changes: 1 addition & 1 deletion components/serializer.rst
Original file line number Diff line number Diff line change
Expand Up @@ -996,7 +996,7 @@ Option Description D
and ``$options = ['csv_headers' => ['a', 'b', 'c']]``
then ``serialize($data, 'csv', $options)`` returns
``a,b,c\n1,2,3`` ``[]``, inferred from input data's keys
``csv_escape_formulas`` Escapes fields containg formulas by prepending them ``false``
``csv_escape_formulas`` Escapes fields containing formulas by prepending them ``false``
with a ``\t`` character
``as_collection`` Always returns results as a collection, even if only ``true``
one line is decoded.
Expand Down
2 changes: 1 addition & 1 deletion reference/configuration/security.rst
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ Using the Sodium Password Hasher
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

It uses the `Argon2 key derivation function`_. Argon2 support was introduced
in PHP 7.2 by bundeling the `libsodium`_ extension.
in PHP 7.2 by bundling the `libsodium`_ extension.

The hashed passwords are ``96`` characters long, but due to the hashing
requirements saved in the resulting hash this may change in the future, so make
Expand Down
2 changes: 1 addition & 1 deletion session.rst
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ Check out the Symfony config reference to learn more about the other available
Basic Usage
-----------

The sessions is available througth the Request and the RequestStack.
The sessions is available through the Request and the RequestStack.
Symfony provides a request_stack service that is injected in your services and
controllers if you type-hint an argument with
:class:`Symfony\\Component\\HttpFoundation\\RequestStack`::
Expand Down