Skip to content

Commit 5ea4ea7

Browse files
authored
Merge pull request #5 from kianmeng/misc-doc-fixes
Misc doc fixes
2 parents 7020b7c + 8233f16 commit 5ea4ea7

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ Depending on your Mac, you can download the latest version with one of the follo
1616
Apple Silicon:
1717

1818
```bash
19-
$ curl -sL https://github.com/tidewave-ai/mcp_proxy_rust/releases/latest/download/mcp-proxy-aarch64-apple-darwin.tar.gz | tar xv
19+
curl -sL https://github.com/tidewave-ai/mcp_proxy_rust/releases/latest/download/mcp-proxy-aarch64-apple-darwin.tar.gz | tar xv
2020
```
2121

2222
Intel:
2323

2424
```bash
25-
$ curl -sL https://github.com/tidewave-ai/mcp_proxy_rust/releases/latest/download/mcp-proxy-x86_64-apple-darwin.tar.gz | tar xv
25+
curl -sL https://github.com/tidewave-ai/mcp_proxy_rust/releases/latest/download/mcp-proxy-x86_64-apple-darwin.tar.gz | tar xv
2626
```
2727

2828
which will put the `mcp-proxy` binary in the current working directory (`pwd`).
@@ -32,7 +32,7 @@ Note that the binaries are not notarized, so if you download the release with th
3232
Alternatively, you can remove the quarantine flag with:
3333

3434
```bash
35-
$ xattr -d com.apple.quarantine /path/to/mcp-proxy
35+
xattr -d com.apple.quarantine /path/to/mcp-proxy
3636
```
3737

3838
### Linux
@@ -42,13 +42,13 @@ You can download the latest release from the [Releases page](https://github.com/
4242
x86:
4343

4444
```bash
45-
$ curl -sL https://github.com/tidewave-ai/mcp_proxy_rust/releases/latest/download/mcp-proxy-x86_64-unknown-linux-musl.tar.gz | tar zxv
45+
curl -sL https://github.com/tidewave-ai/mcp_proxy_rust/releases/latest/download/mcp-proxy-x86_64-unknown-linux-musl.tar.gz | tar zxv
4646
```
4747

4848
arm64 / aarch64:
4949

5050
```bash
51-
$ curl -sL https://github.com/tidewave-ai/mcp_proxy_rust/releases/latest/download/mcp-proxy-aarch64-unknown-linux-musl.tar.gz | tar zxv
51+
curl -sL https://github.com/tidewave-ai/mcp_proxy_rust/releases/latest/download/mcp-proxy-aarch64-unknown-linux-musl.tar.gz | tar zxv
5252
```
5353

5454
### Windows
@@ -64,7 +64,7 @@ curl.exe -L -o mcp-proxy.zip https://github.com/tidewave-ai/mcp_proxy_rust/relea
6464
The proxy is built in Rust. If you have Rust and its tools installed, the project can be built with `cargo`:
6565

6666
```bash
67-
$ cargo build --release
67+
cargo build --release
6868
```
6969

7070
Then, the binary will be located at `target/release/mcp-proxy`.

src/cli.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ pub struct Args {
1515
#[arg(long)]
1616
pub max_disconnected_time: Option<u64>,
1717

18-
/// Initial retry interal in seconds. Default is 5 seconds
18+
/// Initial retry interval in seconds. Default is 5 seconds
1919
#[arg(long, default_value = "5")]
2020
pub initial_retry_interval: u64,
2121
}

0 commit comments

Comments
 (0)