diff options
author | Aaron Covrig <aaron.covrig.us@ieee.org> | 2024-10-14 10:02:24 -0400 |
---|---|---|
committer | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2024-10-14 22:46:51 +0800 |
commit | 6d0a86d22d75f8f4bb602a35218513ae0aef71f1 (patch) | |
tree | e64047f9c4d5e3275032c2ce2ebe6af1cd6bc832 | |
parent | ef678e1acd7cc24143138ad5d952c551034e6f20 (diff) |
style: Fix cli flag typo.
* guix/scripts/style.scm (%options): Fix cli flag expanded name typo.
Change-Id: I6abfb5fd4ba0dc9b58f368437d10ccbe63ae28fa
-rw-r--r-- | guix/scripts/style.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/scripts/style.scm b/guix/scripts/style.scm index 5f4ee4a492d..51234952e91 100644 --- a/guix/scripts/style.scm +++ b/guix/scripts/style.scm @@ -579,7 +579,7 @@ are put in alphabetical order." (option '(#\f "whole-file") #f #f (lambda (opt name arg result) (alist-cons 'whole-file? #t result))) - (option '(#\A "--alphabetical-sort") #f #f + (option '(#\A "alphabetical-sort") #f #f (lambda (opt name arg result) (alist-cons 'order? #t result))) (option '(#\S "styling") #t #f |