From c7c6779414728f80cdadaad344152ec61a83a0a8 Mon Sep 17 00:00:00 2001 From: pmichaud Date: Sat, 28 May 2011 08:55:17 -0500 Subject: [PATCH] Comments update -- no functional changes. --- src/core/List.pm | 4 ++-- src/core/Parcel.pm | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core/List.pm b/src/core/List.pm index 4acd23a30d8..1b1395570e1 100644 --- a/src/core/List.pm +++ b/src/core/List.pm @@ -1,7 +1,7 @@ augment class List does Positional { # N.B.: methods defined in src/builtins/List.pir: - # .new, .eager, .elems, .flat, .item, .iterator, - # .list, .munch, .perl, !fill + # .new, .Capture, .eager, .elems, .flat, .iterator, + # .list, .munch, !fill, !splice method Bool() { self!fill(1) ?? Bool::True !! Bool::False; diff --git a/src/core/Parcel.pm b/src/core/Parcel.pm index 28314036493..6ab92f2e3cd 100644 --- a/src/core/Parcel.pm +++ b/src/core/Parcel.pm @@ -1,5 +1,5 @@ augment class Parcel does Positional { - # methods defined in src/builtins/Parcel.pir: + # N.B.: methods defined in src/builtins/Parcel.pir: # .item .iterator .perl .Bool .Capture !STORE method Str() { self.flat.Str }