From 3373e7261ace0f719c155bfc0f86668130ebe42a Mon Sep 17 00:00:00 2001 From: Lucien Grondin Date: Mon, 14 Sep 2015 20:03:31 +0200 Subject: [PATCH] fix typo --- S07-lists.pod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/S07-lists.pod b/S07-lists.pod index 0512ef9bd..09824f6f0 100644 --- a/S07-lists.pod +++ b/S07-lists.pod @@ -218,7 +218,7 @@ return a C, as do most synchronous sources of multiple values. say (1, 1, * + * ... *).^name; # Seq say $*IN.lines.^name; # Seq -Since a C will not by default remember is values, it can only be +Since a C will not by default remember its values, it can only be consumed once. For example, if a C is stored: my \seq = (1, 2, 3).map(* + 1);