summaryrefslogtreecommitdiff
path: root/tessen
diff options
context:
space:
mode:
authorAyush Agarwal <ayush@fastmail.in>2022-01-16 18:55:52 +0530
committerAyush Agarwal <ayush@fastmail.in>2022-01-16 21:20:53 +0530
commitbcc0a07f18db22ca69792daed9cfa231172dac8d (patch)
treeb169b9afabf395983847b2734bf4eaf127269425 /tessen
parented9412a2f639014226b4513ca724a1662f70c93e (diff)
style: use consistent case, fix grammar
Diffstat (limited to 'tessen')
-rwxr-xr-xtessen6
1 files changed, 3 insertions, 3 deletions
diff --git a/tessen b/tessen
index 0e5c76d..d3f7ddd 100755
--- a/tessen
+++ b/tessen
@@ -242,7 +242,7 @@ key_open_url() {
return 1
}
else
- _die "Failed to open the $tsn_urlkey"
+ _die "failed to open '$tsn_urlkey'"
fi
}
@@ -416,7 +416,7 @@ validate_action() {
copy) readonly tsn_action="copy" ;;
both) readonly tsn_action="both" ;;
"") readonly tsn_action="" ;;
- *) _die "Please specify a valid action: autotype | copy | both" ;;
+ *) _die "please specify a valid action: autotype | copy | both" ;;
esac
}
@@ -452,7 +452,7 @@ main() {
;;
-a | --action)
if [[ "$#" -lt 2 ]]; then
- _die "Please specify a valid action: autotype | copy | both"
+ _die "please specify a valid action: autotype | copy | both"
fi
validate_action "$2"
shift