summaryrefslogtreecommitdiff
path: root/Roadmap.md
diff options
context:
space:
mode:
Diffstat (limited to 'Roadmap.md')
-rw-r--r--Roadmap.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/Roadmap.md b/Roadmap.md
index e310b9a50..ff0f70071 100644
--- a/Roadmap.md
+++ b/Roadmap.md
@@ -131,7 +131,7 @@ void deno_set_callback(Deno* deno, deno_sub_cb cb);
// Get error text with deno_last_exception().
// 0 = success, non-zero = failure.
// TODO(ry) Currently the return code has opposite semantics.
-int deno_execute(Deno* d, const char* js_filename, const char* js_source);
+int deno_execute(Deno* d, void* user_data, const char* js_filename, const char* js_source);
// This call doesn't go into JS. This is thread-safe.
// TODO(ry) Currently this is called deno_pub. It should be renamed.