@@ -60,7 +60,7 @@ impl Display for AuthProvider {
60
60
fn fmt ( & self , f : & mut std:: fmt:: Formatter < ' _ > ) -> std:: fmt:: Result {
61
61
match self {
62
62
AuthProvider :: Microsoft => write ! ( f, "Microsoft Account" ) ,
63
- AuthProvider :: Github => write ! ( f, "Github Account" ) ,
63
+ AuthProvider :: Github => write ! ( f, "GitHub Account" ) ,
64
64
}
65
65
}
66
66
}
@@ -144,7 +144,7 @@ impl StoredCredential {
144
144
let res = match res {
145
145
Ok ( r) => r,
146
146
Err ( e) => {
147
- warning ! ( log, "failed to check Github token: {}" , e) ;
147
+ warning ! ( log, "failed to check GitHub token: {}" , e) ;
148
148
return false ;
149
149
}
150
150
} ;
@@ -154,7 +154,7 @@ impl StoredCredential {
154
154
}
155
155
156
156
let err = StatusError :: from_res ( res) . await ;
157
- debug ! ( log, "github token looks expired: {:?}" , err) ;
157
+ debug ! ( log, "GitHub token looks expired: {:?}" , err) ;
158
158
true
159
159
}
160
160
}
@@ -678,7 +678,7 @@ impl Auth {
678
678
if !* IS_INTERACTIVE_CLI {
679
679
info ! (
680
680
self . log,
681
- "Using Github for authentication, run `{} tunnel user login --provider <provider>` option to change this." ,
681
+ "Using GitHub for authentication, run `{} tunnel user login --provider <provider>` option to change this." ,
682
682
APPLICATION_NAME
683
683
) ;
684
684
return Ok ( AuthProvider :: Github ) ;
0 commit comments