8000 Fixes for 2.3 branch by ifdattic · Pull Request #4956 · symfony/symfony-docs · GitHub
[go: up one dir, main page]

Skip to content

Fixes for 2.3 branch #4956

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

Closed
wants to merge 16 commits into from
Prev Previous commit
Next Next commit
Fix formatting
| Q             | A
| ------------- | ---
| Doc fix?      | yes
| New docs?     | no
| Applies to    | 2.3
| Fixed tickets |
  • Loading branch information
ifdattic committed Feb 3, 2015
commit 587a5b385dcf0b85d4c6496ba78631e39c88f95c
4 changes: 2 additions & 2 deletions reference/forms/types/percent.rst
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ type
**type**: ``string`` **default**: ``fractional``

This controls how your data is stored on your object. For example, a percentage
corresponding to "55%", might be stored as ``.55`` or ``55`` on your
corresponding to "``55%``", might be stored as ``.55`` or ``55`` on your
object. The two "types" handle these two cases:

* ``fractional``
Expand All @@ -63,7 +63,7 @@ object. The two "types" handle these two cases:
on form submit so that the decimal value is stored (``.55``);

* ``integer``
If your data is stored as an integer (e.g. 55), then use this option.
If your data is stored as an integer (e.g. ``55``), then use this option.
The raw value (``55``) is shown to the user and stored on your object.
Note that this only works for integer values.

Expand Down
0