diff --git a/src/as/com/threerings/util/Set.as b/src/as/com/threerings/util/Set.as index fde111aec..0be6c7ea3 100644 --- a/src/as/com/threerings/util/Set.as +++ b/src/as/com/threerings/util/Set.as @@ -49,7 +49,9 @@ public interface Set /** * Returns all elements in the set in an Array. - * Modifying the returned Array will not modify the set. + * + *

Note: this interface does not specify whether modifying the returned Array will modify + * the underlying set; the decision is up to implementation. */ function toArray () :Array; }