summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/string/scrub.rdoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/string/scrub.rdoc b/doc/string/scrub.rdoc
index 5ace376cdb..314b28c465 100644
--- a/doc/string/scrub.rdoc
+++ b/doc/string/scrub.rdoc
@@ -5,7 +5,7 @@ With no block given, replaces each invalid sequence
with the given +default_replacement_string+
(by default, <tt>"�"</tt> for a Unicode encoding, <tt>'?'</tt> otherwise):
- "foo\x81\x81bar"scrub # => "foo��bar"
+ "foo\x81\x81bar".scrub # => "foo��bar"
"foo\x81\x81bar".force_encoding('US-ASCII').scrub # => "foo??bar"
"foo\x81\x81bar".scrub('xyzzy') # => "fooxyzzyxyzzybar"