aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/data/collection/dictionary/plist.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/library/lux/data/collection/dictionary/plist.lux14
1 files changed, 7 insertions, 7 deletions
diff --git a/stdlib/source/library/lux/data/collection/dictionary/plist.lux b/stdlib/source/library/lux/data/collection/dictionary/plist.lux
index 8ffa6682a..a429d56f9 100644
--- a/stdlib/source/library/lux/data/collection/dictionary/plist.lux
+++ b/stdlib/source/library/lux/data/collection/dictionary/plist.lux
@@ -5,9 +5,9 @@
[equivalence {"+" [Equivalence]}]]
[data
["[0]" product]
- ["[0]" text ("[1]\[0]" equivalence)]
+ ["[0]" text ("[1]#[0]" equivalence)]
[collection
- ["[0]" list ("[1]\[0]" functor)]]]
+ ["[0]" list ("[1]#[0]" functor)]]]
[math
[number
["n" nat]]]]])
@@ -35,14 +35,14 @@
{.#None}
{.#Item [k' v'] properties'}
- (if (text\= key k')
+ (if (text#= key k')
{.#Some v'}
(value key properties'))))
(template [<name> <type> <access>]
[(def: .public <name>
(All (_ a) (-> (PList a) (List <type>)))
- (list\each <access>))]
+ (list#each <access>))]
[keys Text product.left]
[values a product.right]
@@ -64,7 +64,7 @@
(list [key val])
{.#Item [k' v'] properties'}
- (if (text\= key k')
+ (if (text#= key k')
{.#Item [key val]
properties'}
{.#Item [k' v']
@@ -77,7 +77,7 @@
{.#End}
{.#Item [k' v'] properties'}
- (if (text\= key k')
+ (if (text#= key k')
{.#Item [k' (f v')] properties'}
{.#Item [k' v'] (revised key f properties')})))
@@ -88,7 +88,7 @@
properties
{.#Item [k' v'] properties'}
- (if (text\= key k')
+ (if (text#= key k')
properties'
{.#Item [k' v']
(lacks key properties')})))