[perl #8703] unescaped @ is fine
Casey West [Fri, 9 May 2003 11:17:53 +0000 (07:17 -0400)]
Message-ID: <20030509151753.GO49820@geeknest.com>

p4raw-id: //depot/perl@19461

pod/perltrap.pod

index 06ddb19..d06f84f 100644 (file)
@@ -1344,13 +1344,12 @@ within certain expressions, statements, contexts, or whatever.
 
 =item * Interpolation
 
-Double-quoted strings may no longer end with an unescaped $ or @.
+Double-quoted strings may no longer end with an unescaped $.
 
     $foo = "foo$";
-    $bar = "bar@";
-    print "foo is $foo, bar is $bar\n";
+    print "foo is $foo\n";
 
-    # perl4 prints: foo is foo$, bar is bar@
+    # perl4 prints: foo is foo$
     # perl5 errors: Final $ should be \$ or $name
 
 Note: perl5 DOES NOT error on the terminating @ in $bar