Skip to content

Commit

Permalink
Remove emoji from welcome script so it looks better on windows (denol…
Browse files Browse the repository at this point in the history
  • Loading branch information
ry committed Jan 7, 2021
1 parent eaabef3 commit cb658f5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion cli/tests/integration_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4740,7 +4740,7 @@ fn compile() {
.wait_with_output()
.unwrap();
assert!(output.status.success());
assert_eq!(output.stdout, "Welcome to Deno 🦕\n".as_bytes());
assert_eq!(output.stdout, "Welcome to Deno!\n".as_bytes());
}

#[test]
Expand Down
2 changes: 1 addition & 1 deletion docs/getting_started/first_steps.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
3 changes: 1 addition & 2 deletions std/examples/welcome.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
console.log("Welcome to Deno 🦕");
console.log("Welcome to Deno!");
2 changes: 1 addition & 1 deletion std/examples/welcome_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Deno.test("[examples/welcome] print a welcome message", async () => {
try {
const output = await process.output();
const actual = decoder.decode(output).trim();
const expected = "Welcome to Deno 🦕";
const expected = "Welcome to Deno!";
assertStrictEquals(actual, expected);
} finally {
process.close();
Expand Down

0 comments on commit cb658f5

Please sign in to comment.