Skip to content

Commit 38c61fa

Browse files
committed
[R] components/options_resolver
- Removed uses of 'we'
1 parent 89512cf commit 38c61fa

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

components/options_resolver.rst

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ You can install the component in several different ways:
2323
Usage
2424
-----
2525

26-
Imagine we have a ``Person`` class which has 2 options: ``firstName`` and
27-
``lastName``. We are going to handles these options with the OptionsResolver
26+
Imagine you have a ``Person`` class which has 2 options: ``firstName`` and
27+
``lastName``. These options are going to be handled by the OptionsResolver
2828
Component.
2929

30-
First of all, we create some basic skeleton::
30+
First of all, you should create some basic skeleton::
3131

3232
class Person
3333
{
@@ -38,11 +38,11 @@ First of all, we create some basic skeleton::
3838
}
3939
}
4040

41-
Now, we should handle the ``$options`` parameter with the OptionsResolver
42-
class. We just instantiate a
43-
:class:`Symfony\\Component\\OptionsResolver\\OptionsResolver` class and let it
44-
resolve the options by calling
45-
:method:`Symfony\\Component\\OptionsResolver::resolve`::
41+
Now, you should handle the ``$options`` parameter with the
42+
:class:`Symfony\\Component\\OptionsResolver\\OptionsResolver` class. To do
43+
this, you should instantiate the ``OptionsResolver`` class and let it resolve
44+
the options by calling
45+
:method:`Symfony\\Component\\OptionsResolver\\OptionsResolver::resolve`::
4646

4747
use Symfony\Component\OptionsResolver\OptionsResolver;
4848

@@ -269,7 +269,7 @@ Normalize the Options
269269
---------------------
270270

271271
Some values needs to be normalized before you can use them. For instance, the
272-
``firstName`` should always start with an uppercase letter. To do that, we can
272+
``firstName`` should always start with an uppercase letter. To do that, you can
273273
write normalizers. These Closures will be executed after all options are
274274
passed and return the normalized value. You can configure these normalizers by
275275
calling

0 commit comments

Comments
 (0)