diff --git a/README.md b/README.md index 6e69359..e50d527 100644 --- a/README.md +++ b/README.md @@ -31,14 +31,14 @@ I'm not a big fan of CocoaPods, so tend to not keep it updated. If you really wa Just like any UIViewController, SVWebViewController can be pushed into a UINavigationController stack: ```objective-c -SVWebViewController *webViewController = [[SVWebViewController alloc] initWithAddress:@"http://google.com"]; +SVWebViewController *webViewController = [[SVWebViewController alloc] initWithAddress:@"http://www.google.com/"]; [self.navigationController pushViewController:webViewController animated:YES]; ``` It can also be presented modally using `SVModalWebViewController`: ```objective-c -SVModalWebViewController *webViewController = [[SVModalWebViewController alloc] initWithAddress:@"http://google.com"]; +SVModalWebViewController *webViewController = [[SVModalWebViewController alloc] initWithAddress:@"http://www.google.com/"]; [self presentViewController:webViewController animated:YES completion:NULL]; ``` @@ -49,4 +49,4 @@ Starting in iOS 6 Apple uses `UIActivity` to let you show additional sharing met ## Credits -SVWebViewController is brought to you by [Sam Vermette](http://samvermette.com) and [contributors to the project](https://github.com/samvermette/SVWebViewController/contributors). If you have feature suggestions or bug reports, feel free to help out by sending pull requests or by [creating new issues](https://github.com/samvermette/SVWebViewController/issues/new). If you're using SVWebViewController in your project, attribution is always appreciated. +SVWebViewController is brought to you by [Sam Vermette](http://samvermette.com) and [contributors to the project](https://github.com/TransitApp/SVWebViewController/graphs/contributors). If you have feature suggestions or bug reports, feel free to help out by sending pull requests or by [creating new issues](https://github.com/samvermette/SVWebViewController/issues/new). If you're using SVWebViewController in your project, attribution is always appreciated.