File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff 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.
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ retry apt-get update >/dev/null
5858retry 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
6262mkdir -p /tmp/gocache
6363export GOCACHE=/tmp/gocache
6464
Original file line number Diff line number Diff 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.
198198func (pr * ProfileResponse ) HasFunctionInFile (functionName string , filename string ) error {
199199 if err := pr .CheckNonEmpty (); err != nil {
You can’t perform that action at this time.
0 commit comments