diff options
author | Rafael França <rafaelmfranca@gmail.com> | 2016-04-05 03:27:30 -0300 |
---|---|---|
committer | Rafael França <rafaelmfranca@gmail.com> | 2016-04-05 03:27:30 -0300 |
commit | 817d109c0ab6a7ab0061300b8be21ad823cb30fc (patch) | |
tree | b442a325d64f7f7ffa1807c91414d7cb299e3233 /guides | |
parent | 2a53011fd35b6c1d6b76993bf12352d7fe7d31c8 (diff) | |
parent | c1c6c3878e1310a0435497cef261d9af741d77db (diff) | |
download | rails-817d109c0ab6a7ab0061300b8be21ad823cb30fc.tar.gz rails-817d109c0ab6a7ab0061300b8be21ad823cb30fc.tar.bz2 rails-817d109c0ab6a7ab0061300b8be21ad823cb30fc.zip |
Merge pull request #24429 from vipulnsward/24401-docs
Guides changes, follow up of #24401 [ci skip]
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/action_view_overview.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/action_view_overview.md b/guides/source/action_view_overview.md index d49df23e4a..0e6bb76101 100644 --- a/guides/source/action_view_overview.md +++ b/guides/source/action_view_overview.md @@ -1419,7 +1419,7 @@ number_to_percentage(100, precision: 0) # => 100% #### number_to_phone -Formats a number into a US phone number. +Formats a number into a phone number (US by default). ```ruby number_to_phone(1235551234) # => 123-555-1234 |