Skip to content

Commit 02ee27e

Browse files
authored
docs: typo fixes (GoogleCloudPlatform#1495)
1 parent 7ec7717 commit 02ee27e

File tree

12 files changed

+16
-16
lines changed

12 files changed

+16
-16
lines changed

appengine/flexible/drupal8/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ env: flex
7474

7575
For now, you need to disable the CSS and JS preprocessed caching that Drupal 8 enables by default.
7676
To do this, go to `/admin/config/development/performance` and deselect the two
77-
chechboxes (`Aggregate CSS files` and `Aggregate JS files`) under **Bandwidth Optimizations**.
77+
checkboxes (`Aggregate CSS files` and `Aggregate JS files`) under **Bandwidth Optimizations**.
7878

7979
Alternatively, you can use [Drush][4] to change this config setting:
8080

appengine/standard/errorreporting/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ or add the `auto_prepend_file` above to your local `php.ini`.
6262
Now run the sample locally using PHP's build-in web server:
6363

6464
```
65-
# export environemnt variables locally which are set by App Engine when deployed
65+
# export environment variables locally which are set by App Engine when deployed
6666
export GOOGLE_APPLICATION_CREDENTIALS=/path/to/credentials.json
6767
export GOOGLE_CLOUD_PROJECT=YOUR_PROJECT_ID
6868
export GAE_SERVICE=local

appengine/standard/grpc/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ been packaged with the Dev AppServer for PHP at this time. You can install gRPC
2929
locally and run them using PHP's build-in web server:
3030
3131
```
32-
# export environemnt variables locally which are set by app engine when deployed
32+
# export environment variables locally which are set by app engine when deployed
3333
export GOOGLE_CLOUD_PROJECT=YOUR_PROJECT_ID
3434
export GAE_INSTANCE=local
3535

appengine/standard/logging/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ in your browser. Browse to `/` to send in some logs.
5858
Run the sample locally using PHP's build-in web server:
5959
6060
```
61-
# export environemnt variables locally which are set by App Engine when deployed
61+
# export environment variables locally which are set by App Engine when deployed
6262
export GOOGLE_APPLICATION_CREDENTIALS=/path/to/credentials.json
6363
export GOOGLE_CLOUD_PROJECT=YOUR_PROJECT_ID
6464

appengine/standard/memorystore/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Before you can run or deploy the sample, you will need to do the following:
2121

2222
1. Update the environment variables `REDIS_HOST` and `REDIS_PORT` in `app.yaml`
2323
with your configuration values. These values are used when the application is
24-
deployed. Run the following command to get the values for your isntance:
24+
deployed. Run the following command to get the values for your instance:
2525

2626
$ gcloud beta redis instances describe YOUR_INSTANCE_NAME --region=REGION_ID
2727

@@ -66,7 +66,7 @@ $ gcloud beta compute networks vpc-access connectors create CONNECTOR_NAME \
6666
--project=PROJECT_ID
6767
```
6868

69-
Next, you neded to [configure App Engine to connect to your VPC network][connecting-appengine].
69+
Next, you need to [configure App Engine to connect to your VPC network][connecting-appengine].
7070
This is done by modifying [`app.yaml`](app.yaml) and setting the full name of
7171
the connector you just created under `vpc_access_connector`.
7272

appengine/standard/tasks/apps/handler/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ in your browser. Browse to `/` to send in some logs.
3131
Run the sample locally using PHP's build-in web server:
3232
3333
```
34-
# export environemnt variables locally which are set by App Engine when deployed
34+
# export environment variables locally which are set by App Engine when deployed
3535
export GOOGLE_APPLICATION_CREDENTIALS=/path/to/credentials.json
3636
export GOOGLE_CLOUD_PROJECT=YOUR_PROJECT_ID
3737

appengine/standard/trace/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ for PHP 7.2.
2121
You can run these samples locally using PHP's build-in web server:
2222
2323
```
24-
# export environemnt variables locally which are set by app engine when deployed
24+
# export environment variables locally which are set by app engine when deployed
2525
export GOOGLE_CLOUD_PROJECT=YOUR_PROJECT_ID
2626
2727
# Run PHP's built-in web server

cloud_sql/mysql/pdo/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ safe.
9191
Then use the following command to launch the proxy in the background:
9292

9393
```bash
94-
./cloud_sql_proxy -instances=$INSTANCE_CONNECTION_NAME=tcp:3306 -credential_file=$GOOGLE_APPLICAITON_CREDENTIALS &
94+
./cloud_sql_proxy -instances=$INSTANCE_CONNECTION_NAME=tcp:3306 -credential_file=$GOOGLE_APPLICATION_CREDENTIALS &
9595
```
9696

9797
#### Windows/PowerShell

cloud_sql/postgres/pdo/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,12 +71,12 @@ Then use the following command to launch the proxy in the background:
7171

7272
### TCP mode
7373

74-
To run the sample locally with a TCP conneciton, set environment variables and
74+
To run the sample locally with a TCP connection, set environment variables and
7575
launch the proxy as shown below.
7676

7777
#### Linux / macOS
7878

79-
Use these terminal commands to initalie environment variables:
79+
Use these terminal commands to initialize environment variables:
8080

8181
```bash
8282
export GOOGLE_APPLICATION_CREDENTIALS=/path/to/service/account/key.json
@@ -95,7 +95,7 @@ safe.
9595
Then use the following command to launch the proxy in the background:
9696

9797
```bash
98-
./cloud_sql_proxy -instances=$INSTANCE_CONNECTION_NAME=tcp:5432 -credential_file=$GOOGLE_APPLICAITON_CREDENTIALS &
98+
./cloud_sql_proxy -instances=$INSTANCE_CONNECTION_NAME=tcp:5432 -credential_file=$GOOGLE_APPLICATION_CREDENTIALS &
9999
```
100100

101101
#### Windows/PowerShell
@@ -115,7 +115,7 @@ secure - consider a more secure solution such as
115115
[Secret Manager](https://cloud.google.com/secret-manager/) to help keep secrets
116116
safe.
117117
118-
Then use the following command to launch the proxy in a seperate PowerShell
118+
Then use the following command to launch the proxy in a separate PowerShell
119119
session:
120120
121121
```powershell

error_reporting/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This directory contains samples for setting up and using
1212
[error-reporting]: https://cloud.google.com/error-reporting/docs/setup/php
1313

1414
`quickstart.php` and `src/report_error.php` are simple command-line programs to
15-
demonstrate logging exceptions, errors, and PHP fatral errors to
15+
demonstrate logging exceptions, errors, and PHP fatal errors to
1616
Stackdriver Error Reporting.
1717

1818
# Installation

spanner/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ authentication:
5353

5454
These samples require you to first set up a [Spanner Instance][create-instance].
5555
Once you've finished with the samples, you can [delete your instance][delete-instance]
56-
to prevent incuring any additional charges.
56+
to prevent incurring any additional charges.
5757

5858
[create-instance]: https://cloud.google.com/spanner/docs/create-manage-instances
5959
[delete-instance]: https://cloud.google.com/spanner/docs/create-manage-instances#delete-instance

vision/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ This simple command-line application demonstrates how to invoke
3737
list Lists commands
3838
localize-object Detect objects in an image using Google Cloud Vision API
3939
logo Detect logos in an image using Google Cloud Vision API
40-
property Detect image proerties in an image using Google Cloud Vision API
40+
property Detect image properties in an image using Google Cloud Vision API
4141
safe-search Detect adult content in an image using Google Cloud Vision API
4242
text Detect text in an image using Google Cloud Vision API
4343
crop-hints Detect crop hints in an image using Google Cloud Vision API

0 commit comments

Comments
 (0)