summaryrefslogtreecommitdiff
path: root/cli/tests/echo.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/echo.ts')
-rw-r--r--cli/tests/echo.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tests/echo.ts b/cli/tests/echo.ts
index bded2fd04..84a645433 100644
--- a/cli/tests/echo.ts
+++ b/cli/tests/echo.ts
@@ -1,4 +1,4 @@
-function echo(args: string[]): void {
+function echo(args: string[]) {
const msg = args.join(", ");
Deno.stdout.write(new TextEncoder().encode(msg));
}