From 5a04ff6abad8893019399e6d2e05c0de4d106973 Mon Sep 17 00:00:00 2001 From: Tommy Stanton Date: Fri, 22 Jan 2016 16:07:09 -0800 Subject: [PATCH] Fix typo in X::Seq::Consumed exception --- src/core/Exception.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/Exception.pm b/src/core/Exception.pm index 06e4fcd7d12..66f2939e9af 100644 --- a/src/core/Exception.pm +++ b/src/core/Exception.pm @@ -2334,7 +2334,7 @@ my class X::InvalidTypeSmiley does X::Comp { my class X::Seq::Consumed is Exception { method message() { "This Seq has already been iterated, and its values consumed\n" ~ - "(you might solve this by addding .cache on usages of the Seq, or\n" ~ + "(you might solve this by adding .cache on usages of the Seq, or\n" ~ "by assigning the Seq into an array)" } }