summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven <steven@ceriously.com>2019-05-23 20:37:34 -0400
committerRyan Dahl <ry@tinyclouds.org>2019-05-24 03:37:34 +0300
commitccdab617081b8f12e6c4a498ef4b387f8c5cc772 (patch)
tree563866878e48f563417271ef3ee5a39358755751
parent1105982586d9554a5e7bf54fd4dc25c8724cd130 (diff)
Remove prefix $ and > from manual (#2404)
-rw-r--r--website/manual.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/website/manual.md b/website/manual.md
index 5a25fc8ef..f3b902b58 100644
--- a/website/manual.md
+++ b/website/manual.md
@@ -95,13 +95,13 @@ scripts to download and install the binary.
Using Shell:
```shellsession
-$ curl -fsSL https://deno.land/x/install/install.sh | sh
+curl -fsSL https://deno.land/x/install/install.sh | sh
```
Using PowerShell:
```shellsession
-> iwr https://deno.land/x/install/install.ps1 | iex
+iwr https://deno.land/x/install/install.ps1 | iex
```
Using [Scoop](https://scoop.sh/) (windows):
@@ -118,7 +118,7 @@ executable bit on Mac and Linux.
Once it's installed and in your `$PATH`, try it:
```shellsession
-$ deno run https://deno.land/welcome.ts
+deno run https://deno.land/welcome.ts
```
### Build from source