diff options
author | Vipul A M <vipulnsward@gmail.com> | 2016-04-05 11:42:07 +0530 |
---|---|---|
committer | Vipul A M <vipulnsward@gmail.com> | 2016-04-05 11:42:07 +0530 |
commit | c1c6c3878e1310a0435497cef261d9af741d77db (patch) | |
tree | b442a325d64f7f7ffa1807c91414d7cb299e3233 | |
parent | 2a53011fd35b6c1d6b76993bf12352d7fe7d31c8 (diff) | |
download | rails-c1c6c3878e1310a0435497cef261d9af741d77db.tar.gz rails-c1c6c3878e1310a0435497cef261d9af741d77db.tar.bz2 rails-c1c6c3878e1310a0435497cef261d9af741d77db.zip |
Guides changes, follow up of #24401
[ci skip]
-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 |