aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormat <git@matdoes.dev>2023-11-29 19:53:14 -0600
committermat <git@matdoes.dev>2023-11-29 19:53:14 -0600
commitf114c78dbaa1ec2402fc71683a260e03f7e7fe2c (patch)
tree28b00962dbcceb071b2f2cfafd1a3e586970782f
parentaf818b3b58a792e216c503ff9f421bc2bb0c8bb5 (diff)
downloadazalea-drasl-f114c78dbaa1ec2402fc71683a260e03f7e7fe2c.tar.xz
fix typo in auth docs
-rwxr-xr-xazalea-auth/src/auth.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/azalea-auth/src/auth.rs b/azalea-auth/src/auth.rs
index 0c3b98c6..49f0c34a 100755
--- a/azalea-auth/src/auth.rs
+++ b/azalea-auth/src/auth.rs
@@ -58,7 +58,7 @@ pub enum AuthError {
///
/// If you want to use your own code to cache or show the auth code to the user
/// in a different way, use [`get_ms_link_code`], [`get_ms_auth_token`],
-/// [`get_minecraft_token`] and [`get_profile`] instead instead.
+/// [`get_minecraft_token`] and [`get_profile`] instead.
pub async fn auth(email: &str, opts: AuthOpts) -> Result<AuthResult, AuthError> {
let cached_account = if let Some(cache_file) = &opts.cache_file {
cache::get_account_in_cache(cache_file, email).await