AUTHENTICATION.md in google-cloud-container-1.2.1 vs AUTHENTICATION.md in google-cloud-container-1.2.2

- old
+ new

@@ -80,21 +80,21 @@ client = Google::Cloud::Container.cluster_manager ``` ### Configuration -The **Credentials JSON** can be configured instead of placing them in -environment variables. Either on an individual client initialization: +The path to the **Credentials JSON** file can be configured instead of storing +it in an environment variable. Either on an individual client initialization: ```ruby require "google/cloud/container" client = Google::Cloud::Container.cluster_manager do |config| config.credentials = "path/to/keyfile.json" end ``` -Or configured globally for all clients: +Or globally for all clients: ```ruby require "google/cloud/container" Google::Cloud::Container.configure do |config|