diff options
| author | mat <github@matdoes.dev> | 2023-02-05 14:31:52 -0600 |
|---|---|---|
| committer | mat <github@matdoes.dev> | 2023-02-05 14:31:52 -0600 |
| commit | 0d3a091c232d409939db82dfb30f700e57583c85 (patch) | |
| tree | 592c3734d824fb2a5cc25d07a997c98239b7d99c /azalea-client/src/account.rs | |
| parent | a72b76839782b26e49598313bb04c5d322a34788 (diff) | |
| download | azalea-drasl-0d3a091c232d409939db82dfb30f700e57583c85.tar.xz | |
improve docs
Diffstat (limited to 'azalea-client/src/account.rs')
| -rwxr-xr-x | azalea-client/src/account.rs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/azalea-client/src/account.rs b/azalea-client/src/account.rs index 3c2c7d1b..b6073209 100755 --- a/azalea-client/src/account.rs +++ b/azalea-client/src/account.rs @@ -8,7 +8,8 @@ use uuid::Uuid; /// Something that can join Minecraft servers. /// -/// To join a server using this account, use [`crate::Client::join`]. +/// To join a server using this account, use [`Client::join`] or +/// [`azalea::ClientBuilder`]. /// /// # Examples /// @@ -21,6 +22,9 @@ use uuid::Uuid; /// // or Account::offline("example"); /// # } /// ``` +/// +/// [`Client::join`]: crate::Client::join +/// [`azalea::ClientBuilder`]: https://docs.rs/azalea/latest/azalea/struct.ClientBuilder.html #[derive(Clone, Debug)] pub struct Account { /// The Minecraft username of the account. |
