Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@
//!
//! // Once the user has been redirected to the redirect URL, you'll have access to the
//! // authorization code. For security reasons, your code should verify that the `state`
//! // parameter returned by the server matches `csrf_state`.
//! // parameter returned by the server matches `csrf_token`.
//!
//! // Now you can trade it for an access token.
//! let token_result =
Expand Down Expand Up @@ -202,7 +202,7 @@
//!
//! // Once the user has been redirected to the redirect URL, you'll have access to the
//! // authorization code. For security reasons, your code should verify that the `state`
//! // parameter returned by the server matches `csrf_state`.
//! // parameter returned by the server matches `csrf_token`.
//!
//! // Now you can trade it for an access token.
//! let token_result = client
Expand Down Expand Up @@ -259,7 +259,7 @@
//!
//! // Once the user has been redirected to the redirect URL, you'll have the access code.
//! // For security reasons, your code should verify that the `state` parameter returned by the
//! // server matches `csrf_state`.
//! // server matches `csrf_token`.
//!
//! # Ok(())
//! # }
Expand Down