We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 756129b commit c72e8dcCopy full SHA for c72e8dc
README.adoc
@@ -4912,9 +4912,9 @@ message = "This is the #{result}."
4912
4913
=== String Concatenation [[concat-strings]]
4914
4915
-Avoid using `String#+` when you need to construct large data chunks.
+Avoid using `pass:[String#+]` when you need to construct large data chunks.
4916
Instead, use `String#<<`.
4917
-Concatenation mutates the string instance in-place and is always faster than `String#+`, which creates a bunch of new string objects.
+Concatenation mutates the string instance in-place and is always faster than `pass:[String#+]`, which creates a bunch of new string objects.
4918
4919
[source,ruby]
4920
----
0 commit comments