From d7310795bb8d92686dcb4f4ac3b555452e895fff Mon Sep 17 00:00:00 2001 From: Rafael Schipiura Date: Sun, 10 Sep 2017 22:46:54 -0300 Subject: [PATCH] Update Failure.pod6 --- doc/Type/Failure.pod6 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/Type/Failure.pod6 b/doc/Type/Failure.pod6 index 222fa7944..bbb161a30 100644 --- a/doc/Type/Failure.pod6 +++ b/doc/Type/Failure.pod6 @@ -30,7 +30,7 @@ Defined as: method new(Failure:D: $payload --> Failure) Returns a new C instance with the given payload. The latter can be -either an C or a payload for an C. A typical payload +either an L or a payload for an C. A typical payload would be a C with an error message. A list of payloads is also accepted. my $e = Failure.new(now.DateTime, 'WELP‼');