Skip to content

Commit a803543

Browse files
committed
Fix typo
1 parent 6002a91 commit a803543

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bigtable/src/create_table.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656

5757
try {
5858
$tableAdminClient->getTable($tableName, ['view' => View::NAME_ONLY]);
59-
printf('Table %s alredy exists' . PHP_EOL, $table_id);
59+
printf('Table %s already exists' . PHP_EOL, $table_id);
6060
} catch (ApiException $e) {
6161
if ($e->getStatus() === 'NOT_FOUND') {
6262
printf('Creating the %s table' . PHP_EOL, $table_id);

bigtable/src/hello_world.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969

7070
try {
7171
$tableAdminClient->getTable($tableName, ['view' => View::NAME_ONLY]);
72-
printf('Table %s alredy exists' . PHP_EOL, $table_id);
72+
printf('Table %s already exists' . PHP_EOL, $table_id);
7373
} catch (ApiException $e) {
7474
if ($e->getStatus() === 'NOT_FOUND') {
7575
printf('Creating the %s table' . PHP_EOL, $table_id);

0 commit comments

Comments
 (0)