Merge pull request #530 from cycomachead/list-string

List.toString will show contents of the list
pull/3/merge
Jens Mönig 2014-07-27 15:03:25 +02:00
commit 3647824d52
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -112,7 +112,7 @@ function List(array) {
}
List.prototype.toString = function () {
return 'a List [' + this.asArray + ']';
return 'a List [' + this.asArray() + ']';
};
// List updating: