1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
From: Michael Fladischer <fladi@debian.org>
Date: Wed, 9 Aug 2023 12:04:54 +0000
Subject: Use local image resource to prevent privacy breach.
---
docs/contributing.md | 4 ++--
docs/index.md | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/docs/contributing.md b/docs/contributing.md
index de5b237..476aca6 100644
--- a/docs/contributing.md
+++ b/docs/contributing.md
@@ -110,7 +110,7 @@ If the test suite fails, you'll want to click through to the
"Details" link, and try to identify why the test suite failed.
<p align="center" style="margin: 0 0 10px">
- <img src="https://raw.githubusercontent.com/Kludex/uvicorn/main/docs/img/gh-actions-fail.png" alt='Failing PR commit status'>
+ <img src="../img/gh-actions-fail.png" alt='Failing PR commit status'>
</p>
Here are some common ways the test suite can fail:
@@ -118,7 +118,7 @@ Here are some common ways the test suite can fail:
### Check Job Failed
<p align="center" style="margin: 0 0 10px">
- <img src="https://raw.githubusercontent.com/Kludex/uvicorn/main/docs/img/gh-actions-fail-check.png" alt='Failing GitHub action lint job'>
+ <img src="../img/gh-actions-fail-check.png" alt='Failing GitHub action lint job'>
</p>
This job failing means there is either a code formatting issue or type-annotation issue.
diff --git a/docs/index.md b/docs/index.md
index 9f0439b..88a06d5 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -6,7 +6,7 @@
</style>
<p align="center">
- <img width="320" height="320" src="../../uvicorn.png" alt='uvicorn'>
+ <img width="320" height="320" src="uvicorn.png" alt='uvicorn'>
</p>
<p align="center">
|