diff options
author | Adam Chlipala <adam@chlipala.net> | 2013-11-04 08:38:20 -0500 |
---|---|---|
committer | Adam Chlipala <adam@chlipala.net> | 2013-11-04 08:38:20 -0500 |
commit | c91d82a0ae20e93ce219709c5dce7650602be6d9 (patch) | |
tree | 147be549cbfaa9efd93aa20c61b2cd76db6b7914 /tests | |
parent | 5c5e76d8a816e08b8f251daf826761aae9290ed3 (diff) |
Rename ListPair.map2 to ListPair.mp
Diffstat (limited to 'tests')
-rw-r--r-- | tests/listpair.ur | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/listpair.ur b/tests/listpair.ur index 4ecacfd3..641b7a04 100644 --- a/tests/listpair.ur +++ b/tests/listpair.ur @@ -2,5 +2,5 @@ val x = 1 :: 2 :: [] val y = 3 :: 4 :: [] fun main () : transaction page = return <xml> - {[ListPair.map2 plus x y]} + {[ListPair.mp plus x y]} </xml> |