From 3f3f7af9e860fa6b489454bd0b1191a2a5bf63c6 Mon Sep 17 00:00:00 2001 From: Sohaib Talaat Bhatti Date: Fri, 5 Mar 2021 17:05:24 +0500 Subject: [PATCH] Fix phone_to API documentation sample output --- actionview/lib/action_view/helpers/url_helper.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actionview/lib/action_view/helpers/url_helper.rb b/actionview/lib/action_view/helpers/url_helper.rb index 8a4d1e3a8f..6baeba1fbf 100644 --- a/actionview/lib/action_view/helpers/url_helper.rb +++ b/actionview/lib/action_view/helpers/url_helper.rb @@ -646,10 +646,10 @@ module ActionView # # => 1234567890 # # phone_to "1234567890", "Phone me" - # # => Phone me + # # => Phone me # # phone_to "1234567890", country_code: "01" - # # => 1234567890 + # # => 1234567890 # # You can use a block as well if your link target is hard to fit into the name parameter. \ERB example: #