From 72b5e652caeac214de823414e0ba52a954b25915 Mon Sep 17 00:00:00 2001 From: Aaron Parecki Date: Thu, 4 Feb 2016 15:27:48 -0800 Subject: [PATCH] use proper capitalization of OAuth see http://oauth.net/ --- .../swift/LicenseByOrgAccount/Helper/LicenseHelper.swift | 2 +- OAuth Login Sample/README.md | 2 +- .../OAuthLoginSample/Controllers/SignInViewController.m | 2 +- .../swift/OAuthLogin/Controllers/SignInViewController.swift | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/LicenseByOrgAccountSample/swift/LicenseByOrgAccount/Helper/LicenseHelper.swift b/LicenseByOrgAccountSample/swift/LicenseByOrgAccount/Helper/LicenseHelper.swift index b1f70089d..256eb5f03 100644 --- a/LicenseByOrgAccountSample/swift/LicenseByOrgAccount/Helper/LicenseHelper.swift +++ b/LicenseByOrgAccountSample/swift/LicenseByOrgAccount/Helper/LicenseHelper.swift @@ -262,7 +262,7 @@ class LicenseHelper: NSObject, AGSPortalDelegate, UIAlertViewDelegate { //make a test connection to force UIWebView to accept the host let rop = AGSJSONRequestOperation(URL: url) AGSRequestOperation.sharedOperationQueue().addOperation(rop) - //Reload the oAuth vc + //Reload the OAuth vc self.oauthLoginVC.reload() } } diff --git a/OAuth Login Sample/README.md b/OAuth Login Sample/README.md index 738af28a1..276823366 100644 --- a/OAuth Login Sample/README.md +++ b/OAuth Login Sample/README.md @@ -1,6 +1,6 @@ ##OAuth Login Sample -This sample demonstrates how you can allow users to sign in to ArcGIS Online using oAuth 2.0. Upon signing in, the sample displays +This sample demonstrates how you can allow users to sign in to ArcGIS Online using OAuth 2.0. Upon signing in, the sample displays the user's profile diff --git a/OAuth Login Sample/objective-c/OAuthLoginSample/Controllers/SignInViewController.m b/OAuth Login Sample/objective-c/OAuthLoginSample/Controllers/SignInViewController.m index 6128a3b72..470f50048 100644 --- a/OAuth Login Sample/objective-c/OAuthLoginSample/Controllers/SignInViewController.m +++ b/OAuth Login Sample/objective-c/OAuthLoginSample/Controllers/SignInViewController.m @@ -127,7 +127,7 @@ - (void) alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)butt //make a test connection to force UIWebView to accept the host AGSJSONRequestOperation* rop = [[AGSJSONRequestOperation alloc]initWithURL:url]; [[AGSRequestOperation sharedOperationQueue] addOperation:rop]; - //Reload the oAuth vc + //Reload the OAuth vc [self.oauthLoginVC reload]; } diff --git a/OAuth Login Sample/swift/OAuthLogin/Controllers/SignInViewController.swift b/OAuth Login Sample/swift/OAuthLogin/Controllers/SignInViewController.swift index 05ea5f12b..1f45447a0 100644 --- a/OAuth Login Sample/swift/OAuthLogin/Controllers/SignInViewController.swift +++ b/OAuth Login Sample/swift/OAuthLogin/Controllers/SignInViewController.swift @@ -124,7 +124,7 @@ class SignInViewController: UIViewController, UIAlertViewDelegate, AGSPortalDele //make a test connection to force UIWebView to accept the host let rop = AGSJSONRequestOperation(URL: url) AGSRequestOperation.sharedOperationQueue().addOperation(rop) - //Reload the oAuth vc + //Reload the OAuth vc self.oauthLoginVC.reload() } }