summaryrefslogtreecommitdiff
path: root/tests/both2.ur
diff options
context:
space:
mode:
Diffstat (limited to 'tests/both2.ur')
-rw-r--r--tests/both2.ur6
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/both2.ur b/tests/both2.ur
index c3f25cc9..3190def8 100644
--- a/tests/both2.ur
+++ b/tests/both2.ur
@@ -1,14 +1,12 @@
fun main () : transaction page =
let
- fun submit r = return <xml/>
+ fun handler r = return <xml/>
in
return <xml>
<body>
<form>
- <textbox{#Text}/><submit action={submit}/>
+ <textbox{#Text}/><submit action={handler}/>
</form>
</body>
</xml>
end
-
-