Author: audreyt Date: Mon Aug 28 00:11:57 2006 New Revision: 11509 Modified: doc/trunk/design/syn/S02.pod
Log: * grammar nit, and clarify that it is the assign-to-scalar that Arrayify a list. Modified: doc/trunk/design/syn/S02.pod ============================================================================== --- doc/trunk/design/syn/S02.pod (original) +++ doc/trunk/design/syn/S02.pod Mon Aug 28 00:11:57 2006 @@ -1412,7 +1412,8 @@ $a = ('a','b'); -which, because the list is in scalar context, is autopromoted an Array object: +which, because the list is assigned to a scalar, is autopromoted into +an Array object: $a = ['a','b'];