From: Nico Stapelbroek <3368018+nstapelbroek@users.noreply.github.com>
Date: Sat, 23 Nov 2019 21:59:15 +0000 (+0100)
Subject: :memo: Remove $ sign from bash codeblocs in markdown (#613)
X-Git-Tag: 0.43.0~10
X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c3cc077fa90c0ee96f4d497d59b5d6aa189119da;p=thirdparty%2Ffastapi%2Ffastapi.git
:memo: Remove $ sign from bash codeblocs in markdown (#613)
---
diff --git a/README.md b/README.md
index 9e333232d2..702cbdef7b 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 9e333232d2..702cbdef7b 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