README.md in octokit-3.4.2 vs README.md in octokit-3.5.2

- old
+ new

@@ -35,11 +35,11 @@ gem "octokit", "~> 3.0" ### Making requests -API methods are available as module methods (consuming module-level +[API methods][] are available as module methods (consuming module-level configuration) or as client instance methods. ```ruby # Provide authentication credentials Octokit.configure do |c| @@ -56,9 +56,11 @@ # Provide authentication credentials client = Octokit::Client.new(:login => 'defunkt', :password => 'c0d3b4ssssss!') # Fetch the current user client.user ``` + +[API methods]: http://octokit.github.io/octokit.rb/method_list.html ### Consuming resources Most methods return a `Resource` object which provides dot notation and `[]` access for fields returned in the API response.