Skip to content

Commit 39855f1

Browse files
authored
chore(docs): fix typos, use doublequotes in shell scripts (GoogleCloudPlatform#1588)
1 parent e886e1d commit 39855f1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

logging/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ To use logging sinks, you will also need a Google Cloud Storage Bucket.
1818

1919
You must add Cloud Logging as an owner to the bucket. To do so, add
2020
`[email protected]` as an owner to the bucket. See the
21-
[exportings logs](https://cloud.google.com/logging/docs/export/configure_export#configuring_log_sinks)
21+
[exporting logs](https://cloud.google.com/logging/docs/export/configure_export#configuring_log_sinks)
2222
docs for complete details.
2323

2424
# Running locally

testing/run_cs_check.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ PROJECT_ROOT="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )/.."
1919
DIR="${1:-$PROJECT_ROOT}"
2020

2121
# we run the script from PROJECT_ROOT
22-
cd $PROJECT_ROOT
22+
cd "$PROJECT_ROOT"
2323

2424
# install local version of php-cs-fixer 3.0 from composer.json
2525
composer -q install -d testing/
@@ -30,4 +30,4 @@ if [ -f "testing/vendor/bin/php-cs-fixer" ]; then
3030
PHP_CS_FIXER="testing/vendor/bin/php-cs-fixer"
3131
fi
3232

33-
$PHP_CS_FIXER fix --dry-run --diff --config="${PROJECT_ROOT}/.php-cs-fixer.dist.php" --path-mode=intersection $DIR
33+
$PHP_CS_FIXER fix --dry-run --diff --config="${PROJECT_ROOT}/.php-cs-fixer.dist.php" --path-mode=intersection "$DIR"

0 commit comments

Comments
 (0)