Skip to content

Commit df54e7a

Browse files
author
saied.nawaz
committed
Fixed some minor typos
1 parent 284088c commit df54e7a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

exporter/http.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ func getResponse(url string, token string, ch chan<- *Response) error {
118118

119119
// Triggers if a user specifies an invalid or not visible repository
120120
if resp.StatusCode == 404 {
121-
return fmt.Errorf("Error: Received 404 status from Github API, ensure the repsository URL is correct. If it's a privare repository, also check the oauth token is correct")
121+
return fmt.Errorf("Error: Received 404 status from Github API, ensure the repository URL is correct. If it's a private repository, also check the oauth token is correct")
122122
}
123123

124124
ch <- &Response{url, resp, body, err}

release-version.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ git pull origin master
77
version=$(cat VERSION)
88
echo "version: $version"
99

10-
# exist if tag alredy exists.
10+
# exist if tag already exists.
1111
if [ $(git tag -l "$version") ]; then
12-
echo "tag already exists. Ensure verion number has been update in VERSION."
12+
echo "tag already exists. Ensure version number has been update in VERSION."
1313
exit 1
1414
fi
1515

0 commit comments

Comments
 (0)