Skip to content

Commit c6d6f96

Browse files
authored
cleanup(doc): master -> main (#6825)
1 parent 2038107 commit c6d6f96

20 files changed

Lines changed: 26 additions & 26 deletions

File tree

ci/cloudbuild/builds/lib/bazel.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ function bazel::common_args() {
7373
if [[ -n "${BAZEL_REMOTE_CACHE:-}" ]]; then
7474
args+=("--remote_cache=${BAZEL_REMOTE_CACHE}")
7575
args+=("--google_default_credentials")
76-
# See https://docs.bazel.build/versions/master/remote-caching.html#known-issues
76+
# See https://docs.bazel.build/versions/main/remote-caching.html#known-issues
7777
# and https://github.com/bazelbuild/bazel/issues/3360
7878
args+=("--experimental_guard_against_concurrent_changes")
7979
fi

ci/kokoro/macos/builds/bazel.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ if [[ -r "${TEST_KEY_FILE_JSON}" ]]; then
5050
io::log "Using bazel remote cache: ${BAZEL_CACHE}/macos/${BUILD_NAME:-}"
5151
bazel_args+=("--remote_cache=${BAZEL_CACHE}/macos/${BUILD_NAME:-}")
5252
bazel_args+=("--google_credentials=${TEST_KEY_FILE_JSON}")
53-
# See https://docs.bazel.build/versions/master/remote-caching.html#known-issues
53+
# See https://docs.bazel.build/versions/main/remote-caching.html#known-issues
5454
# and https://github.com/bazelbuild/bazel/issues/3360
5555
bazel_args+=("--experimental_guard_against_concurrent_changes")
5656
fi

ci/kokoro/macos/builds/quickstart-bazel.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ if [[ -r "${CREDENTIALS_FILE}" ]]; then
5151
io::log "Using bazel remote cache: ${BAZEL_CACHE}/macos/${BUILD_NAME:-}"
5252
bazel_args+=("--remote_cache=${BAZEL_CACHE}/macos/${BUILD_NAME:-}")
5353
bazel_args+=("--google_credentials=${CREDENTIALS_FILE}")
54-
# See https://docs.bazel.build/versions/master/remote-caching.html#known-issues
54+
# See https://docs.bazel.build/versions/main/remote-caching.html#known-issues
5555
# and https://github.com/bazelbuild/bazel/issues/3360
5656
bazel_args+=("--experimental_guard_against_concurrent_changes")
5757
if [[ -r "${CONFIG_DIR}/roots.pem" ]]; then

ci/kokoro/windows/build-bazel.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ if ((Test-Path env:KOKORO_GFILE_DIR) -and
8888
Write-Host -ForegroundColor Yellow "Using bazel remote cache: ${BAZEL_CACHE}/windows/${BuildName}"
8989
$build_flags += @("--remote_cache=${BAZEL_CACHE}/windows/${BuildName}")
9090
$build_flags += @("--google_credentials=${env:KOKORO_GFILE_DIR}/kokoro-run-key.json")
91-
# See https://docs.bazel.build/versions/master/remote-caching.html#known-issues
91+
# See https://docs.bazel.build/versions/main/remote-caching.html#known-issues
9292
# and https://github.com/bazelbuild/bazel/issues/3360
9393
$build_flags += @("--experimental_guard_against_concurrent_changes")
9494
}

ci/kokoro/windows/build-quickstart-bazel.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ if ((Test-Path env:KOKORO_GFILE_DIR) -and
6363
Write-Host -ForegroundColor Yellow "Using bazel remote cache: ${BAZEL_CACHE}/windows/${BuildName}"
6464
$build_flags += @("--remote_cache=${BAZEL_CACHE}/windows/${BuildName}")
6565
$build_flags += @("--google_credentials=${env:KOKORO_GFILE_DIR}/kokoro-run-key.json")
66-
# See https://docs.bazel.build/versions/master/remote-caching.html#known-issues
66+
# See https://docs.bazel.build/versions/main/remote-caching.html#known-issues
6767
# and https://github.com/bazelbuild/bazel/issues/3360
6868
$build_flags += @("--experimental_guard_against_concurrent_changes")
6969
}

google/cloud/bigquery/quickstart/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ trust store for SSL certificates, you can download and configure this using:
158158
set GRPC_DEFAULT_SSL_ROOTS_FILE_PATH=%cd%\roots.pem
159159
```
160160

161-
[bazel-install]: https://docs.bazel.build/versions/master/install.html
161+
[bazel-install]: https://docs.bazel.build/versions/main/install.html
162162
[bigquery-quickstart-link]: https://cloud.google.com/bigquery/docs/quickstarts/quickstart-web-ui
163163
[grpc-roots-pem-bug]: https://github.com/grpc/grpc/issues/16571
164164
[choco-cmake-link]: https://chocolatey.org/packages/cmake

google/cloud/bigtable/doc/bigtable-hello-instance-admin.dox

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ To run the example program, follow the [instructions][github-examples] for the
1818
example on GitHub.
1919

2020
[reference-link]: https://googleapis.github.io/google-cloud-cpp
21-
[github-examples]: https://github.com/googleapis/google-cloud-cpp/tree/master/google/cloud/bigtable/examples/
21+
[github-examples]: https://github.com/googleapis/google-cloud-cpp/tree/main/google/cloud/bigtable/examples/
2222

2323
## Include the Necessary Headers
2424

google/cloud/bigtable/doc/bigtable-hello-table-admin.dox

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ To run the example program, follow the [instructions][github-examples] for the
1919
example on GitHub.
2020

2121
[reference-link]: https://googleapis.github.io/google-cloud-cpp
22-
[github-examples]: https://github.com/googleapis/google-cloud-cpp/tree/master/google/cloud/bigtable/examples/
22+
[github-examples]: https://github.com/googleapis/google-cloud-cpp/tree/main/google/cloud/bigtable/examples/
2323

2424
## Include the Necessary Headers
2525

google/cloud/bigtable/doc/bigtable-hello-world.dox

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ To run the example program, follow the [instructions][github-examples] for the
1919
example on GitHub.
2020

2121
[reference-link]: https://googleapis.github.io/google-cloud-cpp
22-
[github-examples]: https://github.com/googleapis/google-cloud-cpp/tree/master/google/cloud/bigtable/examples/
22+
[github-examples]: https://github.com/googleapis/google-cloud-cpp/tree/main/google/cloud/bigtable/examples/
2323

2424
## Including the Necessary Headers
2525

google/cloud/bigtable/doc/bigtable-main.dox

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,10 +104,10 @@ which should give you a taste of the Cloud Bigtable C++ client library API.
104104
[user-account]: https://cloud.google.com/docs/authentication/
105105

106106
[github-link]: https://github.com/googleapis/google-cloud-cpp 'GitHub Repository'
107-
[workspace-definition-link]: https://docs.bazel.build/versions/master/build-ref.html#packages_targets
107+
[workspace-definition-link]: https://docs.bazel.build/versions/main/build-ref.html#packages_targets
108108

109109
<!-- The ugly %2E disables auto-linking in Doxygen -->
110-
[github-readme]: https://github.com/googleapis/google-cloud-cpp/blob/master/README%2Emd
111-
[github-install]: https://github.com/googleapis/google-cloud-cpp/blob/master/INSTALL%2Emd
110+
[github-readme]: https://github.com/googleapis/google-cloud-cpp/blob/main/README%2Emd
111+
[github-install]: https://github.com/googleapis/google-cloud-cpp/blob/main/INSTALL%2Emd
112112

113113
*/

0 commit comments

Comments
 (0)