summaryrefslogtreecommitdiff
path: root/commands/account
diff options
context:
space:
mode:
authorRobin Jarry <robin@jarry.cc>2022-01-19 20:57:48 +0100
committerRobin Jarry <robin@jarry.cc>2022-01-19 21:29:16 +0100
commit92bf89c3389b8e08cf99d30cf20a818529680f51 (patch)
tree7a2af50307bef8c8623ae22dbb3f2ab03993ba26 /commands/account
parentf0f7cf347c06953bcc9a68651ed70d52b0f41e93 (diff)
downloadaerc-92bf89c3389b8e08cf99d30cf20a818529680f51.zip
docs: mention missing -T options for compose and forward
A template file may be specified for compose and forward as well. Signed-off-by: Robin Jarry <robin@jarry.cc>
Diffstat (limited to 'commands/account')
-rw-r--r--commands/account/compose.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/account/compose.go b/commands/account/compose.go
index f48fa69..62bf11d 100644
--- a/commands/account/compose.go
+++ b/commands/account/compose.go
@@ -72,7 +72,7 @@ func buildBody(args []string) (string, string, error) {
}
posargs := args[optind:]
if len(posargs) > 1 {
- return "", template, errors.New("Usage: compose [-H] [body]")
+ return "", template, errors.New("Usage: compose [-H header] [-T template] [body]")
}
if len(posargs) == 1 {
body = posargs[0]