Skip to content

Commit 17f337f

Browse files
committed
Fixed mismatched links.
1 parent c475f1b commit 17f337f

File tree

16 files changed

+94
-94
lines changed

16 files changed

+94
-94
lines changed

bigquery/README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -30,18 +30,18 @@ analytics data warehouse.
3030

3131
### Create A Simple Application With the API
3232

33-
View the [documentation][basics_1] or the [source code][basics_2].
33+
View the [documentation][basics_docs] or the [source code][basics_code].
3434

3535
__Run the sample:__
3636

3737
node getting_started
3838

39-
[basics_1]: getting_started.js
40-
[basics_2]: https://cloud.google.com/bigquery/create-simple-app-api
39+
[basics_docs]: https://cloud.google.com/bigquery/create-simple-app-api
40+
[basics_code]: getting_started.js
4141

4242
### Calculate size of dataset
4343

44-
View the [source code][size_1].
44+
View the [source code][size_code].
4545

4646
__Run the sample:__
4747

@@ -51,11 +51,11 @@ Example:
5151

5252
node dataset_size bigquery-public-data hacker_news
5353

54-
[size_1]: dataset_size.js
54+
[size_code]: dataset_size.js
5555

5656
### Loading Data with a POST Request
5757

58-
View the [documentation][file_1] or the [source code][file_2].
58+
View the [documentation][file_docs] or the [source code][file_code].
5959

6060
__Run the sample:__
6161

@@ -65,12 +65,12 @@ Example:
6565

6666
node load_data_from_csv resources/data.csv my-dataset my-table
6767

68-
[file_1]: load_data_from_csv.js
69-
[file_2]: https://cloud.google.com/bigquery/loading-data-post-request
68+
[file_docs]: https://cloud.google.com/bigquery/loading-data-post-request
69+
[file_code]: load_data_from_csv.js
7070

7171
### Loading Data from Cloud Storage
7272

73-
View the [documentation][gcs_1] or the [source code][gcs_2].
73+
View the [documentation][gcs_docs] or the [source code][gcs_code].
7474

7575
__Run the sample:__
7676

@@ -80,5 +80,5 @@ Example:
8080

8181
node load_data_from_gcs my-bucket data.csv my-dataset my-table
8282

83-
[gcs_1]: load_data_from_gcs.js
84-
[gcs_2]: https://cloud.google.com/bigquery/docs/loading-data-cloud-storage
83+
[gcs_docs]: https://cloud.google.com/bigquery/docs/loading-data-cloud-storage
84+
[gcs_code]: load_data_from_gcs.js

computeengine/README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Google infrastructure.
3030

3131
### Sending mail with Sendgrid
3232

33-
View the [documentation][sendgrid_1] or the [source code][sendgrid_2].
33+
View the [documentation][sendgrid_docs] or the [source code][sendgrid_code].
3434

3535
__Run the sample:__
3636

@@ -44,12 +44,12 @@ __Run the sample:__
4444

4545
1. Open http://localhost:8080 in your browser
4646

47-
[sendgrid_1]: sendgrid.js
48-
[sendgrid_2]: https://cloud.google.com/compute/docs/tutorials/sending-mail/using-sendgrid
47+
[sendgrid_docs]: https://cloud.google.com/compute/docs/tutorials/sending-mail/using-sendgrid
48+
[sendgrid_code]: sendgrid.js
4949

5050
### Sending mail with Mailjet
5151

52-
View the [documentation][mailjet_1] or the [source code][mailjet_2].
52+
View the [documentation][mailjet_docs] or the [source code][mailjet_code].
5353

5454
__Run the sample:__
5555

@@ -67,27 +67,27 @@ __Run the sample:__
6767

6868
1. Open http://localhost:8080 in your browser
6969

70-
[mailjet_1]: mailjet.js
71-
[mailjet_2]: https://cloud.google.com/compute/docs/tutorials/sending-mail/using-mailjet
70+
[mailjet_docs]: https://cloud.google.com/compute/docs/tutorials/sending-mail/using-mailjet
71+
[mailjet_code]: mailjet.js
7272

7373
### Listing instances (recommended)
7474

75-
View the [documentation][vms_1] or the [source code][vms_2].
75+
View the [documentation][vms_docs] or the [source code][vms_code].
7676

7777
__Run the sample:__
7878

7979
node vms
8080

81-
[vms_1]: vms.js
82-
[vms_2]: https://cloud.google.com/compute/docs/tutorials/nodejs-guide
81+
[vms_docs]: https://cloud.google.com/compute/docs/tutorials/nodejs-guide
82+
[vms_code]: vms.js
8383

8484
### Listing instances
8585

86-
View the [documentation][vms_api_1] or the [source code][vms_api_2].
86+
View the [documentation][vms_api_docs] or the [source code][vms_api_code].
8787

8888
__Run the sample:__
8989

9090
node vms_api
9191

92-
[vms_api_1]: vms_api.js
93-
[vms_api_2]: https://cloud.google.com/compute/docs/tutorials/nodejs-guide
92+
[vms_api_docs]: https://cloud.google.com/compute/docs/tutorials/nodejs-guide
93+
[vms_api_code]: vms_api.js

containerengine/hello-world/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44

55
This is a basic hello world sample.
66

7-
View the [documentation][docs] or the [source code][source].
7+
View the [documentation][docs] or the [source code][code].
88

9-
[docs]: server.js
10-
[source]: https://cloud.google.com/container-engine/docs/quickstart
9+
[docs]: https://cloud.google.com/container-engine/docs/quickstart
10+
[code]: server.js
1111

1212
__Run the sample:__
1313

datastore/README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ automatic scaling, high performance, and ease of application development.
2929

3030
### Getting started with Google Cloud Datastore API
3131

32-
View the [documentation][tasks_1] or the [source code][tasks_2].
32+
View the [documentation][tasks_docs] or the [source code][tasks_code].
3333

3434
__Run the sample:__
3535

@@ -43,23 +43,23 @@ Example:
4343

4444
node tasks list
4545

46-
[tasks_1]: tasks.js
47-
[tasks_2]: https://cloud.google.com/datastore/docs/datastore-api-tutorial
46+
[tasks_docs]: https://cloud.google.com/datastore/docs/datastore-api-tutorial
47+
[tasks_code]: tasks.js
4848

4949
### Concepts
5050

51-
View the [documentation][concepts_1] or the [source code][concepts_2].
51+
View the [documentation][concepts_docs] or the [source code][concepts_code].
5252

53-
[concepts_1]: concepts.js
54-
[concepts_2]: https://cloud.google.com/datastore/docs/concepts/entities
53+
[concepts_docs]: https://cloud.google.com/datastore/docs/concepts/entities
54+
[concepts_code]: concepts.js
5555

5656
### Errors and Error Handling
5757

58-
View the [documentation][error_1] or the [source code][error_2].
58+
View the [documentation][error_docs] or the [source code][error_code].
5959

6060
__Run the sample:__
6161

6262
node error
6363

64-
[error_1]: error.js
65-
[error_2]: https://cloud.google.com/datastore/docs/concepts/errors
64+
[error_docs]: https://cloud.google.com/datastore/docs/concepts/errors
65+
[error_code]: error.js

functions/helloworld/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44

55
This is a basic hello world sample that shows a single exported function.
66

7-
View the [documentation][docs] or the [source code][source].
7+
View the [documentation][docs] or the [source code][code].
88

9-
[docs]: index.js
10-
[source]: https://cloud.google.com/functions/writing
9+
[docs]: https://cloud.google.com/functions/writing
10+
[code]: index.js
1111

1212
## Deploy
1313

functions/log/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44

55
This sample shows writing to logs in a Cloud Function.
66

7-
View the [documentation][docs] or the [source code][source].
7+
View the [documentation][docs] or the [source code][code].
88

9-
[docs]: index.js
10-
[source]: https://cloud.google.com/functions/walkthroughs
9+
[docs]: https://cloud.google.com/functions/walkthroughs
10+
[code]: index.js
1111

1212
## Deploy
1313

functions/message/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44

55
This sample shows calling the `success` and `failure` callbacks.
66

7-
View the [documentation][docs] or the [source code][source].
7+
View the [documentation][docs] or the [source code][code].
88

9-
[docs]: index.js
10-
[source]: https://cloud.google.com/functions/writing
9+
[docs]: https://cloud.google.com/functions/writing
10+
[code]: index.js
1111

1212
## Deploy
1313

functions/module/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
This sample shows exporting a Google Cloud Function as part of a module, which
66
is the method one would use to store multiple function in a single source file.
77

8-
View the [documentation][docs] or the [source code][source].
8+
View the [documentation][docs] or the [source code][code].
99

10-
[docs]: index.js
11-
[source]: https://cloud.google.com/functions/writing
10+
[docs]: https://cloud.google.com/functions/writing
11+
[code]: index.js
1212

1313
## Deploy
1414

functions/uuid/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
This sample shows a Google Cloud Function that uses a dependency from NPM, and
66
is a handy way to generate a v4 UUID from the command-line.
77

8-
View the [documentation][docs] or the [source code][source].
8+
View the [documentation][docs] or the [source code][code].
99

10-
[docs]: index.js
11-
[source]: https://cloud.google.com/functions/writing
10+
[docs]: https://cloud.google.com/functions/writing
11+
[code]: index.js
1212

1313
## Deploy
1414

logging/README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -32,40 +32,40 @@ Web Services.
3232

3333
### Reading logs
3434

35-
View the [documentation][read_1] or the [source code][read_2].
35+
View the [documentation][read_docs] or the [source code][read_code].
3636

3737
__Run the sample:__
3838

3939
node list
4040

41-
[read_1]: list.js
42-
[read_2]: https://cloud.google.com/logging/docs/api/tasks/authorization
41+
[read_docs]: https://cloud.google.com/logging/docs/api/tasks/authorization
42+
[read_code]: list.js
4343

4444
### Writing logs
4545

46-
View the [documentation][write_1] or the [source code][write_2].
46+
View the [documentation][write_docs] or the [source code][write_code].
4747

4848
__Run the sample:__
4949

5050
node write
5151

52-
[write_1]: write.js
53-
[write_2]: https://cloud.google.com/logging/docs/api/tasks/creating-logs
52+
[write_docs]: https://cloud.google.com/logging/docs/api/tasks/creating-logs
53+
[write_code]: write.js
5454

5555
### Exporting logs
5656

57-
View the [documentation][export_1] or the [source code][export_2].
57+
View the [documentation][export_docs] or the [source code][export_code].
5858

5959
__Run the sample:__
6060

6161
node export
6262

63-
[export_1]: export.js
64-
[export_2]: https://cloud.google.com/logging/docs/api/tasks/exporting-logs
63+
[export_docs]: https://cloud.google.com/logging/docs/api/tasks/exporting-logs
64+
[export_code]: export.js
6565

6666
### Error Reporting on Compute Engine
6767

68-
View the [documentation][error_1] or the [source code][error_2].
68+
View the [documentation][error_docs] or the [source code][error_code].
6969

70-
[error_1]: fluent.js
71-
[error_2]: https://cloud.google.com/error-reporting/docs/setup/compute-engine
70+
[error_docs]: https://cloud.google.com/error-reporting/docs/setup/compute-engine
71+
[error_code]: fluent.js

0 commit comments

Comments
 (0)