diff --git a/src/api/users/connections.rs b/src/api/users/connections.rs index 6caf95e..209a26d 100644 --- a/src/api/users/connections.rs +++ b/src/api/users/connections.rs @@ -147,9 +147,9 @@ impl ChorusUser { /// println!(""); /// println!("- create a DNS TXT record with the name _discord.{domain} and content {proof}"); /// println!("or"); - /// println!("- create a file at https://{domain}/.well-known/discord with the content {proof}"); - /// // Once the user has added the proof, retry calling the endpoint - /// } + /// println!("- create a file at https://{domain}/.well-known/discord with the content {proof}"); + /// // Once the user has added the proof, retry calling the endpoint + /// } /// CreateDomainConnectionReturn::Ok(connection) => { /// println!("Successfulyl created connection! {:?}", connection); /// } diff --git a/src/types/schema/user.rs b/src/types/schema/user.rs index 41b05a1..180b7fb 100644 --- a/src/types/schema/user.rs +++ b/src/types/schema/user.rs @@ -422,7 +422,7 @@ pub enum CreateDomainConnectionReturn { /// To verify ownership, either: /// /// - add the proof string as a TXT DNS record to the domain, - /// with the name of the record being `_discord.{domain}` or + /// with the name of the record being `_discord.{domain}` or /// /// - serve the proof string as a file at `https://{domain}/.well-known/discord` ///