diff --git a/src/lib.rs b/src/lib.rs index 3c6c2a4e..4a0f4e2d 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -110,7 +110,7 @@ impl Deepgram { /// the base_url will be `http://deepgram.internal`. /// /// Admin features, such as billing, usage, and key management will - /// still go through the hosted site at https://api.deepgram.com. + /// still go through the hosted site at `https://api.deepgram.com`. /// /// Create your first API key on the [Deepgram Console][console]. /// @@ -119,10 +119,10 @@ impl Deepgram { /// # Example: /// /// ``` - /// #use deepgram::Deepgram; + /// # use deepgram::Deepgram; /// let deepgram = Deepgram::with_base_url( /// "apikey12345", - /// "http://localhost:8080".parse().unwrap(), + /// "http://localhost:8080", /// ); /// ``` ///