From aedac1b423f45a3ea294131fe26493d82d42a9d5 Mon Sep 17 00:00:00 2001 From: Steven 'Steve' Kendall Date: Tue, 14 Jan 2020 15:05:26 -0500 Subject: [PATCH] fixup // to /// for DeviceFlow doc --- src/device.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/device.rs b/src/device.rs index 78cce65..227f1a9 100644 --- a/src/device.rs +++ b/src/device.rs @@ -23,7 +23,7 @@ pub const GOOGLE_DEVICE_CODE_URL: &'static str = "https://accounts.google.com/o/ /// Implements the [Oauth2 Device Flow](https://developers.google.com/youtube/v3/guides/authentication#devices) /// It operates in two steps: /// * obtain a code to show to the user -// * (repeatedly) poll for the user to authenticate your application +/// * (repeatedly) poll for the user to authenticate your application #[derive(Clone)] pub struct DeviceFlow { application_secret: ApplicationSecret,