From dc53bb9c275892760ab10162250130d940ca64ad Mon Sep 17 00:00:00 2001 From: Jonathan Hefner Date: Fri, 24 Nov 2023 16:13:03 -0600 Subject: [PATCH] Fix prose indentation [ci-skip] Prior to this commit, the prose was formatted as a code example. --- actionview/lib/action_view/helpers/text_helper.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actionview/lib/action_view/helpers/text_helper.rb b/actionview/lib/action_view/helpers/text_helper.rb index 3f81bece25c5d..ccfaf17803a9d 100644 --- a/actionview/lib/action_view/helpers/text_helper.rb +++ b/actionview/lib/action_view/helpers/text_helper.rb @@ -261,7 +261,7 @@ def pluralize(count, singular, plural_arg = nil, plural: plural_arg, locale: I18 # word_wrap('Once upon a time', line_width: 1) # # => Once\nupon\na\ntime # - # You can also specify a custom +break_sequence+ ("\n" by default) + # You can also specify a custom +break_sequence+ ("\n" by default): # # word_wrap('Once upon a time', line_width: 1, break_sequence: "\r\n") # # => Once\r\nupon\r\na\r\ntime