spacepaste

  1.  
  2. diff --git a/doc/Type/Array.pod6 b/doc/Type/Array.pod6
  3. index 22b5765b..73c6c90d 100644
  4. --- a/doc/Type/Array.pod6
  5. +++ b/doc/Type/Array.pod6
  6. @@ -222,10 +222,13 @@ argument—the number of elements in C<@list>—and its return value is used
  7. as C<$start>.
  8. A C<Whatever> C<$elems> deletes from C<$start> to end of
  9. -C<@list> (same as no C<$elems>). A C<Callable> C<$elements> is called with
  10. +C<@list> (same as no C<$elems>). A C<Callable> C<$elems> is called with
  11. just one argument—the number of elements in C<@list> minus the value of
  12. C<$start>—and its return value is used the value of C<$elems>.
  13. +If both C<$start> and C<$elems> are omitted, all elements are deleted from
  14. +the C<Array> and returned.
  15. +
  16. Example:
  17. my @foo = <a b c d e f g>;
  18.