README.md in octokit-1.9.1 vs README.md in octokit-1.9.2
- old
+ new
@@ -49,19 +49,19 @@
For methods that require authentication, you'll need to setup a client with
your login and password.
```ruby
client = Octokit::Client.new(:login => "me", :password => "sekret")
-client.follow!("sferik")
+client.follow("sferik")
```
Alternately, you can authenticate with a GitHub OAuth2 token. Note: this is
**NOT** the GitHub API token on your [account page][account].
[account]: https://github.com/account
```ruby
client = Octokit::Client.new(:login => "me", :oauth_token => "oauth2token")
-client.follow!("sferik")
+client.follow("sferik")
```
## Using with GitHub Enterprise
To use with [GitHub Enterprise](https://enterprise.github.com/), you'll need to