Skip to content

Commit

Permalink
Fix grammar (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
chitoku-k authored and mpyw committed Nov 10, 2019
1 parent 10aa18a commit ed35f48
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Options:
-i, --ini Output as INI.
-y, --yaml Output as YAML.
-j, --json Output as JSON.
-a, --array Output as array that compatible with most languages.
-a, --array Output as array compatible with most languages.
-A, --assoc Output as PHP-style associative array.
-e, --env Output as environmental uppercase variables.

Expand All @@ -34,7 +34,7 @@ Options:

[ OAuth Credentials ]

Insufficient components are required to input via STDIN.
Insufficient components will be required to input via STDIN.
Password is masked.

--ck <value> Specify consumer_key in advance.
Expand All @@ -54,7 +54,7 @@ Options:
mac | Twitter for Mac
deck | TweetDeck

Your own applications also can be defined in /Users/mpyw/.twhelp.ini
Your own applications can also be defined in /Users/mpyw/.twhelp.ini
Example:

[my_app_01]
Expand Down
2 changes: 1 addition & 1 deletion complention.zsh → completions.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ _twhelp() {
'(-i --ini -y -a -A -j -e -h --yaml --array --assoc --json --env --help)'{-i,--ini}'[Output as INI.]' \
'(-y --yaml -i -a -A -j -e -h --ini --array --assoc --json --env --help)'{-y,--yaml}'[Output as YAML.]' \
'(-j --json -i -y -a -A -e -h --ini --yaml --array --assoc --env --help)'{-j,--json}'[Output as JSON.]' \
'(-a --array -i -y -A -j -e -h --ini --yaml --assoc --json --env --help)'{-a,--array}'[Output as array that compatible with most languages]' \
'(-a --array -i -y -A -j -e -h --ini --yaml --assoc --json --env --help)'{-a,--array}'[Output as array compatible with most languages]' \
'(-A --assoc -i -y -a -j -e -h --ini --yaml --array --json --env --help)'{-A,--assoc}'[Output as PHP-style associative array.]' \
'(-e --env -i -y -a -j -h --ini --yaml --array --json --help)'{-e,--env}'[Output as environmental uppercase variables.]' \
'(-x --xauth -o -h --oauth --help)'{-x,--xauth}'[Pure xAuth. Only available with official keys.]' \
Expand Down
2 changes: 1 addition & 1 deletion twhelp.go
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ func main() {
"session[password]": {pw},
}))
if matches == nil {
log.Fatalln("Wrong username or password. Otherwise, you may have to verify your email address.")
log.Fatalln("Wrong username or password, otherwise you may have to verify your email address.")
}
verifier := string(matches[1])
t = t.RenewWithAccessToken(map[string]string{}, &verifier)
Expand Down
4 changes: 2 additions & 2 deletions utility/utility.go
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ Options:
-i, --ini Output as INI.
-y, --yaml Output as YAML.
-j, --json Output as JSON.
-a, --array Output as array that compatible with most languages.
-a, --array Output as array compatible with most languages.
-A, --assoc Output as PHP-style associative array.
-e, --env Output as environmental uppercase variables.
Expand All @@ -125,7 +125,7 @@ Options:
[ OAuth Credentials ]
Insufficient components are required to input via STDIN.
Insufficient components will be required to input via STDIN.
Password is masked.
--ck <value> Specify consumer_key in advance.
Expand Down

0 comments on commit ed35f48

Please sign in to comment.