Skip to content

Commit bfabb67

Browse files
authored
Removes 'Google' from before 'Cloud client library (GoogleCloudPlatform#782)
1 parent f71dc41 commit bfabb67

14 files changed

+13
-17
lines changed

appengine/php72/auth/src/auth_api.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
# [START gae_auth_api_implicit]
2424
namespace Google\Cloud\Samples\Auth;
2525

26-
// Imports the Google Cloud Storage client library.
26+
// Imports the Cloud Storage client library.
2727
use Google_Client;
2828
use Google_Service_Storage;
2929

appengine/php72/auth/src/auth_cloud.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
# [START gae_auth_cloud_implicit]
2424
namespace Google\Cloud\Samples\Auth;
2525

26-
// Imports the Google Cloud Storage client library.
26+
// Imports the Cloud Storage client library.
2727
use Google\Cloud\Storage\StorageClient;
2828

2929
function auth_cloud($projectId)

auth/src/auth_api_explicit.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
# [START auth_api_explicit]
2424
namespace Google\Cloud\Samples\Auth;
2525

26-
// Imports the Google Cloud Storage client library.
2726
use Google_Client;
2827
use Google_Service_Storage;
2928

auth/src/auth_api_explicit_app_engine.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
use GuzzleHttp\Client;
2929
use GuzzleHttp\HandlerStack;
3030

31-
// Imports the Google Cloud Storage client library.
3231
use Google_Client;
3332
use Google_Service_Storage;
3433

auth/src/auth_api_explicit_compute_engine.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
use GuzzleHttp\Client;
2929
use GuzzleHttp\HandlerStack;
3030

31-
// Imports the Google Cloud Storage client library.
3231
use Google_Client;
3332
use Google_Service_Storage;
3433

auth/src/auth_api_implicit.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
# [START auth_api_implicit]
2424
namespace Google\Cloud\Samples\Auth;
2525

26-
// Imports the Google Cloud Storage client library.
2726
use Google_Client;
2827
use Google_Service_Storage;
2928

auth/src/auth_cloud_explicit.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
# [START auth_cloud_explicit]
2424
namespace Google\Cloud\Samples\Auth;
2525

26-
// Imports the Google Cloud Storage client library.
26+
// Imports the Cloud Storage client library.
2727
use Google\Cloud\Storage\StorageClient;
2828

2929
function auth_cloud_explicit($projectId, $serviceAccountPath)

auth/src/auth_cloud_explicit_app_engine.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
# [START auth_cloud_explicit_app_engine]
2424
namespace Google\Cloud\Samples\Auth;
2525

26-
// Imports AppIdentityCredentials and the Google Cloud Storage client library.
26+
// Imports AppIdentityCredentials and the Cloud Storage client library.
2727
use Google\Auth\Credentials\AppIdentityCredentials;
2828
use Google\Cloud\Storage\StorageClient;
2929

auth/src/auth_cloud_explicit_compute_engine.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
# [START auth_cloud_explicit_compute_engine]
2424
namespace Google\Cloud\Samples\Auth;
2525

26-
// Imports GCECredentials and the Google Cloud Storage client library.
26+
// Imports GCECredentials and the Cloud Storage client library.
2727
use Google\Auth\Credentials\GCECredentials;
2828
use Google\Cloud\Storage\StorageClient;
2929

auth/src/auth_cloud_implicit.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
# [START auth_cloud_implicit]
2424
namespace Google\Cloud\Samples\Auth;
2525

26-
// Imports the Google Cloud Storage client library.
26+
// Imports the Cloud Storage client library.
2727
use Google\Cloud\Storage\StorageClient;
2828

2929
function auth_cloud_implicit($projectId)

error_reporting/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Run the samples:
3636

3737
```sh
3838
php quickstart.php
39-
Exception logged to Stack Driver Error Reporting
39+
Exception logged to Stackdriver Error Reporting
4040
```
4141

4242
View [Stackdriver Error Reporting][1] in the Cloud Console to see the logged

error_reporting/quickstart.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
require __DIR__ . '/vendor/autoload.php';
55

66
# [START error_reporting_quickstart]
7-
// Imports the Google Cloud client library
7+
// Imports the Cloud Client Library
88
use Google\Cloud\Logging\LoggingClient;
99

1010
// These variables are set by the App Engine environment. To test locally,
@@ -36,11 +36,11 @@
3636
// Writes the log entry
3737
$logger->write($entry);
3838

39-
print("Exception logged to Stack Driver Error Reporting" . PHP_EOL);
39+
print("Exception logged to Stackdriver Error Reporting" . PHP_EOL);
4040
};
4141

4242
// Sets PHP's default exception handler
4343
set_exception_handler($handlerFunction);
4444

45-
throw new Exception('This will be logged to Stack Driver Error Reporting');
45+
throw new Exception('This will be logged to Stackdriver Error Reporting');
4646
# [END error_reporting_quickstart]

error_reporting/test/quickstartTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,11 @@ public function testQuickstart()
4646

4747
// Make sure it looks correct
4848
$this->assertEquals(
49-
'Exception logged to Stack Driver Error Reporting' . PHP_EOL,
49+
'Exception logged to Stackdriver Error Reporting' . PHP_EOL,
5050
$output
5151
);
5252

53-
$message = 'This will be logged to Stack Driver Error Reporting';
53+
$message = 'This will be logged to Stackdriver Error Reporting';
5454

5555
$this->verifyReportedError($projectId, $message);
5656
}

texttospeech/quickstart.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
// includes the autoloader for libraries installed with composer
2020
require __DIR__ . '/vendor/autoload.php';
2121

22-
// imports the Google Cloud client library
22+
// Imports the Cloud Client Library
2323
use Google\Cloud\TextToSpeech\V1\AudioConfig;
2424
use Google\Cloud\TextToSpeech\V1\AudioEncoding;
2525
use Google\Cloud\TextToSpeech\V1\SsmlVoiceGender;

0 commit comments

Comments
 (0)