summaryrefslogtreecommitdiff
path: root/src/cli/runtime/IArray.cs
diff options
context:
space:
mode:
authorRich Hickey <richhickey@gmail.com>2006-08-04 22:31:21 +0000
committerRich Hickey <richhickey@gmail.com>2006-08-04 22:31:21 +0000
commitb47c234ac5a398894c8f3ce5dc7c06a5e7926e10 (patch)
tree198470083f9e1088315c8ce917904c9a2cae2ab7 /src/cli/runtime/IArray.cs
parent8c2c0ea39e31c05863a5f0d07fb3916a345c3da8 (diff)
renamed ISequential to IPersistentCollection
Diffstat (limited to 'src/cli/runtime/IArray.cs')
-rw-r--r--src/cli/runtime/IArray.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cli/runtime/IArray.cs b/src/cli/runtime/IArray.cs
index b5bcb4b9..8602b1c0 100644
--- a/src/cli/runtime/IArray.cs
+++ b/src/cli/runtime/IArray.cs
@@ -13,7 +13,7 @@ using System;
namespace clojure.lang
{
-public interface IArray : ISequential {
+public interface IArray : IPersistentCollection {
int length();
Object get(int i);