Skip to content
This repository has been archived by the owner on Jan 6, 2023. It is now read-only.

Commit

Permalink
use proper capitalization of OAuth
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronpk committed Feb 4, 2016
1 parent ef05775 commit 72b5e65
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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()
}
}
Expand Down
2 changes: 1 addition & 1 deletion OAuth Login Sample/README.md
Original file line number Diff line number Diff line change
@@ -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


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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];
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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()
}
}
Expand Down

0 comments on commit 72b5e65

Please sign in to comment.