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, "�" for a Unicode encoding, '?' 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"