Skip to content

Commit ea1a3a7

Browse files
fix(docs): corrects typos in project documentation (GoogleCloudPlatform#5741)
* fix(docs): corrects typos in project documentation * Update notebooks/rendered/bigquery-basics.md Co-authored-by: Leah E. Cole <6719667+leahecole@users.noreply.github.com>
1 parent b6100f0 commit ea1a3a7

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

appengine/standard/i18n/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ update the translations by the following command:
8484

8585
$ pybabel update -l ja -d locales -i locales/messages.pot
8686

87-
Note: If you run `pybabel init` against an existant translations file,
87+
Note: If you run `pybabel init` against an existent translations file,
8888
you will lose your translations.
8989

9090

@@ -114,7 +114,7 @@ the Python runtime.
114114
For strings in Jinja2 templates, there is the `i18n_utils.BaseHandler`
115115
class from which you can extend in order to have a handy property
116116
named `jinja2_env` that lazily initializes Jinja2 environment for you
117-
with the `jinja2.ext.i18n` extention, and similar to the
117+
with the `jinja2.ext.i18n` extension, and similar to the
118118
`I18nMiddleware`, installs `gettext` and `ngettext` functions to the
119119
global namespace of the Jinja2 environment.
120120

cloud-sql/mysql/client-side-encryption/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ Then use this command to launch the proxy in the background:
115115

116116
### Install requirements
117117

118-
Next, setup install the requirements into a virtual enviroment:
118+
Next, setup install the requirements into a virtual environment:
119119
```bash
120120
virtualenv --python python3 env
121121
source env/bin/activate

cloud-sql/mysql/sqlalchemy/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ Then use this command to launch the proxy in the background:
104104

105105
### Testing the application
106106

107-
Next, setup install the requirements into a virtual enviroment:
107+
Next, setup install the requirements into a virtual environment:
108108
```bash
109109
virtualenv --python python3 env
110110
source env/bin/activate

cloud-sql/postgres/client-side-encryption/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ Then use this command to launch the proxy in the background:
114114

115115
### Install requirements
116116

117-
Next, setup install the requirements into a virtual enviroment:
117+
Next, setup install the requirements into a virtual environment:
118118
```bash
119119
virtualenv --python python3 env
120120
source env/bin/activate

cloud-sql/postgres/sqlalchemy/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ Then use this command to launch the proxy in the background:
102102
```
103103

104104
### Testing the application
105-
Next, setup install the requirements into a virtual enviroment:
105+
Next, setup install the requirements into a virtual environment:
106106
```bash
107107
virtualenv --python python3 env
108108
source env/bin/activate

notebooks/rendered/bigquery-basics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ print('Starting job {}'.format(load_job.job_id))
211211
load_job.result() # Waits for table load to complete.
212212
print('Job finished.')
213213

214-
# Retreive the destination table
214+
# Retrieve the destination table
215215
destination_table = client.get_table(table_ref)
216216
print('Loaded {} rows.'.format(destination_table.num_rows))
217217
```

run/image-processing/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ gcloud run deploy pubsub-tutorial --image gcr.io/${GOOGLE_CLOUD_PROJECT}/pubsub-
4848
Cloud Run services can be [configured with Environment Variables](https://cloud.google.com/run/docs/configuring/environment-variables).
4949
Required variables for this sample include:
5050

51-
* `INPUT_BUCKET_NAME`: The Cloud Run service will be notified of images uploaded to this Cloud Storage bucket. The service will then retreive and process the image.
51+
* `INPUT_BUCKET_NAME`: The Cloud Run service will be notified of images uploaded to this Cloud Storage bucket. The service will then retrieve and process the image.
5252
* `BLURRED_BUCKET_NAME`: The Cloud Run service will write blurred images to this Cloud Storage bucket.
5353

5454
## Maintenance Note

0 commit comments

Comments
 (0)