diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2021-01-07 05:51:15 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-07 05:51:15 -0500 |
commit | cb658f5ce588dfac4826a5ce4d343738759c0c84 (patch) | |
tree | 78e7c6f3c738e8641db49bc15ed8e3e82ba58de7 /docs/getting_started | |
parent | eaabef30d08b47c9a90c12ec736c7d53f42a1208 (diff) |
Remove emoji from welcome script so it looks better on windows (#9031)
Diffstat (limited to 'docs/getting_started')
-rw-r--r-- | docs/getting_started/first_steps.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/getting_started/first_steps.md b/docs/getting_started/first_steps.md index 7bb51bb15..aec7dded3 100644 --- a/docs/getting_started/first_steps.md +++ b/docs/getting_started/first_steps.md @@ -17,7 +17,7 @@ Browser compatibility means a `Hello World` program in Deno is the same as the one you can run in the browser: ```ts -console.log("Welcome to Deno 🦕"); +console.log("Welcome to Deno!"); ``` Try the program: |