summaryrefslogtreecommitdiff
path: root/src/cli/runtime/Keyword.cs
diff options
context:
space:
mode:
authorRich Hickey <richhickey@gmail.com>2006-08-04 23:31:33 +0000
committerRich Hickey <richhickey@gmail.com>2006-08-04 23:31:33 +0000
commitcdd429f0d51b754ed0d2f4ab4cd9b90d320a3c0e (patch)
tree7f15ccd00531887f3abc56238fbdd23c585fd902 /src/cli/runtime/Keyword.cs
parentee19adc3e5bc9e5b525dac99e9281f3db30d3ece (diff)
renaming
Diffstat (limited to 'src/cli/runtime/Keyword.cs')
-rw-r--r--src/cli/runtime/Keyword.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cli/runtime/Keyword.cs b/src/cli/runtime/Keyword.cs
index 28ba5c73..d23ec19e 100644
--- a/src/cli/runtime/Keyword.cs
+++ b/src/cli/runtime/Keyword.cs
@@ -25,7 +25,7 @@ internal Keyword(String name):base(name) { } public Object invoke() /*throws
if (obj == null)
return null;
return ((IPersistentMap)obj).get(this); } /** * Indexer implements IFn for attr access * This two arg version is the setter * @param tld * @param obj - must be AMap * @param val * @return val */ public Object invoke( Object obj, Object val) /*throws Exception*/ {
- return ((IPersistentMap)obj).put(this, val); }
+ return ((IPersistentMap)obj).assoc(this, val); }
public Object invoke(Object arg1, Object arg2, Object arg3)
{