From 529383f7ed73ad9798ec69531ac880a60129dd7b Mon Sep 17 00:00:00 2001 From: JJ Merelo Date: Fri, 1 Mar 2019 17:19:28 +0100 Subject: [PATCH] Clarifies deprecation :count refs #2632 --- doc/Type/Str.pod6 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/Type/Str.pod6 b/doc/Type/Str.pod6 index 394c3c7be..d4a50fd34 100644 --- a/doc/Type/Str.pod6 +++ b/doc/Type/Str.pod6 @@ -556,7 +556,7 @@ non-C value: say .join("\n").lines( 2 ); # OUTPUT: «(not there)␤» -B«DEPRECATED as of C<6.d> language», the C<:count> argument can be used +B«DEPRECATED as of C<6.d> language», the C<:count> argument was used to return the total number of lines: say .join("\n").lines( :count ); # OUTPUT: «3␤»