diff --git a/components/clock.rst b/components/clock.rst index f89bfb5dab..78d870d363 100644 --- a/components/clock.rst +++ b/components/clock.rst @@ -250,7 +250,7 @@ timestamps:: error handling across versions of PHP, thanks to polyfilling `PHP 8.3's behavior`_ on the topic. -``DatePoint`` also allows to set and get the microsecond part of the date and time:: +``DatePoint`` also allows you to set and get the microsecond part of the date and time:: $datePoint = new DatePoint(); $datePoint->setMicrosecond(345); diff --git a/controller.rst b/controller.rst index 7965fa1ab1..c110ebd5be 100644 --- a/controller.rst +++ b/controller.rst @@ -658,7 +658,7 @@ controller argument nullable: #[MapUploadedFile] ?UploadedFile $document -The ``#[MapUploadedFile]`` attribute also allows to pass a list of constraints +The ``#[MapUploadedFile]`` attribute also allows you to pass a list of constraints to apply to the uploaded file:: namespace App\Controller; diff --git a/http_client.rst b/http_client.rst index 1edf754c74..e347d11442 100644 --- a/http_client.rst +++ b/http_client.rst @@ -1517,7 +1517,7 @@ Limit the Number of Requests ---------------------------- This component provides a :class:`Symfony\\Component\\HttpClient\\ThrottlingHttpClient` -decorator that allows to limit the number of requests within a certain period, +decorator that allows you to limit the number of requests within a certain period, potentially delaying calls based on the rate limiting policy. The implementation leverages the diff --git a/reference/formats/yaml.rst b/reference/formats/yaml.rst index 38562deec5..e8ddc952fb 100644 --- a/reference/formats/yaml.rst +++ b/reference/formats/yaml.rst @@ -344,7 +344,7 @@ official YAML specification but are useful in Symfony applications: # ... or you can also use "->value" to directly use the value of a BackedEnum case operator_type: !php/enum App\Operator\Enum\Type::Or->value - This tag allows to omit the enum case and only provide the enum FQCN + This tag allows you to omit the enum case and only provide the enum FQCN to return an array of all available enum cases: .. code-block:: yaml