Skip to content

Commit c9124a2

Browse files
committed
docs: Fix Markdown list formatting
1 parent f805af2 commit c9124a2

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ the static crate file download server.
1111
Two independent HTTP proxy endpoints are implemented:
1212

1313
1. Listens to HTTP GET requests at `/index/.../{crate}`,
14-
forwards them to <https://index.crates.io/> and caches the downloaded registry
15-
index entries as JSON text files on the local filesystem.
14+
forwards them to <https://index.crates.io/> and caches the downloaded registry
15+
index entries as JSON text files on the local filesystem.
1616

1717
2. Listens to HTTP GET requests at `/api/v1/crates/{crate}/{version}/download`,
18-
forwards them to <https://crates.io/> and caches the downloaded crates as
19-
`.crate` files on the local filesystem.
18+
forwards them to <https://crates.io/> and caches the downloaded crates as
19+
`.crate` files on the local filesystem.
2020

2121
Subsequent sparse registry index and crate download API hits are serviced
2222
using the locally cached index entry and crate files.

src/main.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88
//! Two independent HTTP proxy endpoints are implemented:
99
//!
1010
//! 1. Listens to HTTP GET requests at `/index/.../{crate}`,
11-
//! forwards them to <https://index.crates.io/> and caches the downloaded registry
12-
//! index entries as JSON text files on the local filesystem.
11+
//! forwards them to <https://index.crates.io/> and caches the downloaded registry
12+
//! index entries as JSON text files on the local filesystem.
1313
//!
1414
//! 2. Listens to HTTP GET requests at `/api/v1/crates/{crate}/{version}/download`,
15-
//! forwards them to <https://crates.io/> and caches the downloaded crates as
16-
//! `.crate` files on the local filesystem.
15+
//! forwards them to <https://crates.io/> and caches the downloaded crates as
16+
//! `.crate` files on the local filesystem.
1717
//!
1818
//! Subsequent sparse registry index and crate download API hits are serviced
1919
//! using the locally cached index entry and crate files.

0 commit comments

Comments
 (0)