Skip to content

Commit

Permalink
Small fixes to links
Browse files Browse the repository at this point in the history
  • Loading branch information
honzasp committed Apr 15, 2023
1 parent 1bded47 commit 6a1714f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Makiko is an asynchronous SSH client library in pure Rust.

**[Tutorial][tutorial] | [API docs][docs-rs] | [Github][github] | [Crate][crates-io]**

[tutorial]: https://honzasp.github.io/makiko
[tutorial]: https://honzasp.github.io/makiko/tutorial
[docs-rs]: https://docs.rs/makiko/latest/makiko
[github]: https://github.com/honzasp/makiko
[crates-io]: https://crates.io/crates/makiko
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ layout: home
{{ site.description }}
{: .fs-6 .fw-300 .text-grey-dk-200}

[Get started](/tutorial){: .btn .btn-primary }
[Get started]({% link tutorial/index.md %}){: .btn .btn-primary }
[API docs][docs-rs]{: .btn .ml-4 }
[Github][github]{: .btn .ml-4 }
[Crate][crates-io]{: .btn .ml-4 }
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorial/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ has_children: true

Makiko is an asynchronous SSH client library for Rust. It gives you a lot of control over the SSH connection, but this means that it is quite low-level.

In this tutorial, we will to connect to a server, authenticate with a password or a public key, execute a command and open a tunnel. I will assume that you know [Rust][rust], have some experience with [Tokio][tokio] and have used SSH previously.
In this tutorial, we will connect to a server, authenticate with a password or a public key, execute a command and open a tunnel. I will assume that you know [Rust][rust], have some experience with [Tokio][tokio] and have used SSH previously.

[rust]: https://www.rust-lang.org/
[tokio]: https://tokio.rs/
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
//!
//! You may want to **[read the tutorial][tutorial]** to get started with Makiko.
//!
//! [tutorial]: https://honzasp.github.io/makiko
//! [tutorial]: https://honzasp.github.io/makiko/tutorial
//!
//! - Entry point for making SSH connections is the [`Client`].
//! - Functions for decoding keys are in the [`keys`] module.
Expand Down

0 comments on commit 6a1714f

Please sign in to comment.