diff options
Diffstat (limited to 'src/cli/runtime/IFn.cs')
-rw-r--r-- | src/cli/runtime/IFn.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cli/runtime/IFn.cs b/src/cli/runtime/IFn.cs index e96fd902..f2e86341 100644 --- a/src/cli/runtime/IFn.cs +++ b/src/cli/runtime/IFn.cs @@ -30,8 +30,8 @@ Object invoke(ThreadLocalData tld, Object arg1, Object arg2, Object arg3, Object /*throws Exception*/; Object invoke(ThreadLocalData tld, Object arg1, Object arg2, Object arg3, Object arg4, Object arg5, - Cons args) /*throws Exception*/; + ISeq args) /*throws Exception*/; -Object applyTo(ThreadLocalData tld, Cons arglist) /*throws Exception*/; +Object applyTo(ThreadLocalData tld, ISeq arglist) /*throws Exception*/; } } |