rename 'mu label' -> 'mu labels'

Update names, docs etc.
This commit is contained in:
Dirk-Jan C. Binnema
2025-09-08 21:45:39 +03:00
committed by Seth Ladygo
parent 755c453b9f
commit 656aa41ada
13 changed files with 155 additions and 149 deletions

View File

@ -177,11 +177,11 @@ Mu::mu_cmd_execute(const Options& opts) try {
/*
* read-only _or_ writable store
*/
case Options::SubCommand::Label:
if (opts.label.read_only)
return with_readonly_store2(mu_cmd_label, opts);
case Options::SubCommand::Labels:
if (opts.labels.read_only)
return with_readonly_store2(mu_cmd_labels, opts);
else
return with_writable_store(mu_cmd_label, opts);
return with_writable_store(mu_cmd_labels, opts);
/*
* commands instantiate store themselves
*/