Subject: | [PATCH] Correct "it's" to "its" where appropriate |
This patch against the svn trunk corrects all the wrong occurence of
"it's" as in "it's results were" to "its".
Subject: | html-formfu-correct-it-apos-s.patch |
Index: lib/HTML/FormFu.pm
===================================================================
--- lib/HTML/FormFu.pm (revision 1588)
+++ lib/HTML/FormFu.pm (working copy)
@@ -1364,7 +1364,7 @@
In the following example, multiple documents are taken advantage of to
load another config file after the elements are added. (If this were
a single document, the C<load_config_file> would be called before
-C<elements>, regardless of it's position in the file).
+C<elements>, regardless of its position in the file).
---
elements:
@@ -1611,7 +1611,7 @@
For example, to make every C<Text> element automatically have a
L<size|HTML::FormFu::Element/size> of C<10>, and make every C<Strftime>
-deflator automatically get it's strftime set to C<%d/%m/%Y>:
+deflator automatically get its strftime set to C<%d/%m/%Y>:
default_args:
elements:
Index: lib/HTML/FormFu/Manual/Cookbook.pod
===================================================================
--- lib/HTML/FormFu/Manual/Cookbook.pod (revision 1588)
+++ lib/HTML/FormFu/Manual/Cookbook.pod (working copy)
@@ -330,7 +330,7 @@
always pass, regardless of user input.
You can take advantage of this by setting
-L<force_errors|HTML::FormFu/force_errors>, to display it's error message
+L<force_errors|HTML::FormFu/force_errors>, to display its error message
when needed.
Example config:
Index: lib/HTML/FormFu/Element/ComboBox.pm
===================================================================
--- lib/HTML/FormFu/Element/ComboBox.pm (revision 1588)
+++ lib/HTML/FormFu/Element/ComboBox.pm (working copy)
@@ -342,7 +342,7 @@
=head1 CAVEATS
-Although this element inherits from L<HTML::FormFu::Element::Block>, it's
+Although this element inherits from L<HTML::FormFu::Element::Block>, its
behaviour for the methods
L<filter/filters|HTML::FormFu/filters>,
L<constraint/constraints|HTML::FormFu/constraints>,
@@ -350,13 +350,13 @@
L<validator/validators|HTML::FormFu/validators> and
L<transformer/transformers|HTML::FormFu/transformers> is more like that of
a L<field element|HTML::FormFu::Element::_Field>, meaning all processors are
-added directly to the date element, not to it's child elements.
+added directly to the date element, not to its child elements.
This element's L<get_elements|HTML::FormFu/get_elements> and
L<get_all_elements|HTML::FormFu/get_all_elements> are inherited from
L<HTML::FormFu::Element::Block>, and so have the same behaviour. However, it
overrides the C<get_fields> method, such that it returns both itself and
-it's child elements.
+its child elements.
=head1 SEE ALSO
Index: lib/HTML/FormFu/Element/Date.pm
===================================================================
--- lib/HTML/FormFu/Element/Date.pm (revision 1588)
+++ lib/HTML/FormFu/Element/Date.pm (working copy)
@@ -627,7 +627,7 @@
=head1 CAVEATS
-Although this element inherits from L<HTML::FormFu::Element::Block>, it's
+Although this element inherits from L<HTML::FormFu::Element::Block>, its
behaviour for the methods
L<filter/filters|HTML::FormFu/filters>,
L<constraint/constraints|HTML::FormFu/constraints>,
@@ -635,13 +635,13 @@
L<validator/validators|HTML::FormFu/validators> and
L<transformer/transformers|HTML::FormFu/transformers> is more like that of
a L<field element|HTML::FormFu::Element::_Field>, meaning all processors are
-added directly to the date element, not to it's select-menu child elements.
+added directly to the date element, not to its select-menu child elements.
This element's L<get_elements|HTML::FormFu/get_elements> and
L<get_all_elements|HTML::FormFu/get_all_elements> are inherited from
L<HTML::FormFu::Element::Block>, and so have the same behaviour. However, it
overrides the C<get_fields> method, such that it returns both itself and
-it's child elements.
+its child elements.
=head1 SEE ALSO
Index: lib/HTML/FormFu/Element/_Field.pm
===================================================================
--- lib/HTML/FormFu/Element/_Field.pm (revision 1588)
+++ lib/HTML/FormFu/Element/_Field.pm (working copy)
@@ -1290,7 +1290,7 @@
If L</retain_default> is true and the form was submitted, but the field
didn't have a value submitted, then when the form is redisplayed to the user
-the field will have it's value set to it's default value , rather than the
+the field will have its value set to its default value , rather than the
usual behaviour of having an empty value.
Default Value: C<false>
@@ -1299,7 +1299,7 @@
If L</force_default> is true and the form was submitted, and the field
has a default/value set, then when the form is redisplayed to the user
-the field will have it's value set to it's default value.
+the field will have its value set to its default value.
If the default value is being changed after FormFu->process is being called
the later default value is respected for rendering, *but* nevertheless the
Index: lib/HTML/FormFu/Element/_Group.pm
===================================================================
--- lib/HTML/FormFu/Element/_Group.pm (revision 1588)
+++ lib/HTML/FormFu/Element/_Group.pm (working copy)
@@ -452,7 +452,7 @@
Use to set the list of items in the select menu / radiogroup.
-It's arguments must be an array-ref of items. Each item may be an array ref
+Its arguments must be an array-ref of items. Each item may be an array ref
of the form C<[ $value, $label ]> or a hash-ref of the form
C<< { value => $value, label => $label } >>. Each hash-ref may also have the
keys C<attributes> and C<label_attributes>.
@@ -506,7 +506,7 @@
A more concise alternative to L</options>. Use to set the list of values in
the select menu / radiogroup.
-It's arguments must be an array-ref of values. The labels used are the
+Its arguments must be an array-ref of values. The labels used are the
result of C<ucfirst($value)>.
=head2 value_range
Index: lib/HTML/FormFu/Element/SimpleTable.pm
===================================================================
--- lib/HTML/FormFu/Element/SimpleTable.pm (revision 1588)
+++ lib/HTML/FormFu/Element/SimpleTable.pm (working copy)
@@ -149,7 +149,7 @@
Sometimes you just really need to use a table to display some fields in a
grid format.
-As it's name suggests, this is a compromise between power and simplicity.
+As its name suggests, this is a compromise between power and simplicity.
If you want more control of the markup, you'll probably just have to revert
to using nested L<block's|HTML::FormFu::Element::_Block>, setting the tags
to table, tr, td, etc. and adding the cell contents as elements.
Index: lib/HTML/FormFu/Deflator/CompoundSplit.pm
===================================================================
--- lib/HTML/FormFu/Deflator/CompoundSplit.pm (revision 1588)
+++ lib/HTML/FormFu/Deflator/CompoundSplit.pm (working copy)
@@ -102,7 +102,7 @@
A L<default|HTML::FormFu::Element::_Field/default> value passed to the
L<Multi|HTML::FormFu::Element::Multi> field will be split according to the
-L</split> setting, and it's resulting parts passed to it's child elements.
+L</split> setting, and its resulting parts passed to its child elements.
=head1 METHODS
Index: examples/client-side-constraint/client-side-constraint.css
===================================================================
--- examples/client-side-constraint/client-side-constraint.css (revision 1588)
+++ examples/client-side-constraint/client-side-constraint.css (working copy)
@@ -31,7 +31,7 @@
display: block;
}
-/* override the iframe's height="" - it's seems a bit big
+/* override the iframe's height="" - it seems a bit big
*/
fieldset .recaptcha iframe {
height: 230px ! important;
Index: examples/vertically-aligned-css/vertically-aligned.css
===================================================================
--- examples/vertically-aligned-css/vertically-aligned.css (revision 1588)
+++ examples/vertically-aligned-css/vertically-aligned.css (working copy)
@@ -32,7 +32,7 @@
display: block;
}
-/* override the iframe's height="" - it's seems a bit big
+/* override the iframe's height="" - it seems a bit big
*/
fieldset .recaptcha iframe {
height: 230px ! important;