diff --git a/jquery-turtle.js b/jquery-turtle.js
index 9f4064d..c44f712 100644
--- a/jquery-turtle.js
+++ b/jquery-turtle.js
@@ -8046,9 +8046,9 @@ var dollar_turtle_methods = {
"converts input to a number: " +
"readstr 'Enter code', (v) -> write v.length + ' long'"],
doOutput, function readstr(a, b) { return prepareInput(a, b, 'text'); }),
- readvoice: wrapglobalcommand('readvoice',
- ["readvoice(html, fn) Reads voice input, if the browser supports it:" +
- "readvoice 'Say something', (v) -> write v"],
+ listen: wrapglobalcommand('listen',
+ ["listen(html, fn) Reads voice input, if the browser supports it:" +
+ "listen 'Say something', (v) -> write v"],
doOutput, function readstr(a, b) { return prepareInput(a, b, 'voice'); }),
menu: wrapglobalcommand('menu',
["menu(map) shows a menu of choices and calls a function " +
diff --git a/test/globals.html b/test/globals.html
index f208663..a19cb14 100644
--- a/test/globals.html
+++ b/test/globals.html
@@ -60,7 +60,7 @@
"typeline",
"read",
"readnum",
- "readvoice",
+ "listen",
"readstr",
"menu",
"random",