Skip to content

Commit 03d78b5

Browse files
authored
fix(all): correct minor typos (#2756)
1 parent f799758 commit 03d78b5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

bigquery/job.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ type QueryStatistics struct {
401401
// UNKNOWN: accuracy of the estimate is unknown.
402402
// PRECISE: estimate is precise.
403403
// LOWER_BOUND: estimate is lower bound of what the query would cost.
404-
// UPPER_BOUND: estiamte is upper bound of what the query would cost.
404+
// UPPER_BOUND: estimate is upper bound of what the query would cost.
405405
TotalBytesProcessedAccuracy string
406406

407407
// Describes execution plan for the query.

profiler/integration_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ retry apt-get update >/dev/null
5858
retry apt-get -y -q install git >/dev/null
5959
6060
# $GOCACHE is required from Go 1.12. See https://golang.org/doc/go1.11#gocache
61-
# $GOCACHE is explicitly set becasue $HOME is not set when this code runs
61+
# $GOCACHE is explicitly set because $HOME is not set when this code runs
6262
mkdir -p /tmp/gocache
6363
export GOCACHE=/tmp/gocache
6464

profiler/proftest/proftest.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ func (pr *ProfileResponse) HasFunction(functionName string) error {
193193
return fmt.Errorf("failed to find function name %s in profile", functionName)
194194
}
195195

196-
// HasFunctionInFile returns nil if function is present in the specifed file, and an
196+
// HasFunctionInFile returns nil if function is present in the specified file, and an
197197
// error if the function/file combination is not present in the profile.
198198
func (pr *ProfileResponse) HasFunctionInFile(functionName string, filename string) error {
199199
if err := pr.CheckNonEmpty(); err != nil {

0 commit comments

Comments
 (0)