From c3cc077fa90c0ee96f4d497d59b5d6aa189119da Mon Sep 17 00:00:00 2001
From: Nico Stapelbroek <3368018+nstapelbroek@users.noreply.github.com>
Date: Sat, 23 Nov 2019 22:59:15 +0100
Subject: [PATCH] :memo: Remove $ sign from bash codeblocs in markdown (#613)
---
README.md | 4 ++--
docs/index.md | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/README.md b/README.md
index 9e333232d..702cbdef7 100644
--- a/README.md
+++ b/README.md
@@ -90,13 +90,13 @@ FastAPI stands on the shoulders of giants:
## Installation
```bash
-$ pip install fastapi
+pip install fastapi
```
You will also need an ASGI server, for production such as Uvicorn or Hypercorn.
```bash
-$ pip install uvicorn
+pip install uvicorn
```
## Example
diff --git a/docs/index.md b/docs/index.md
index 9e333232d..702cbdef7 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -90,13 +90,13 @@ FastAPI stands on the shoulders of giants:
## Installation
```bash
-$ pip install fastapi
+pip install fastapi
```
You will also need an ASGI server, for production such as Uvicorn or Hypercorn.
```bash
-$ pip install uvicorn
+pip install uvicorn
```
## Example