@@ -37,18 +37,16 @@ pub fn main() {
37
37
. arg ( Arg :: with_name ( "SKIP_IF_EXISTS" )
38
38
. short ( "s" )
39
39
. long ( "skip" )
40
- . help ( "Skips building documentation if \
41
- documentation exists") )
40
+ . help ( "Skips building documentation if documentation exists" ) )
42
41
. arg ( Arg :: with_name ( "SKIP_IF_LOG_EXISTS" )
43
42
. long ( "skip-if-log-exists" )
44
- . help ( "Skips building documentation if build \
45
- log exists") )
43
+ . help ( "Skips building documentation if build log exists" ) )
46
44
. arg ( Arg :: with_name ( "KEEP_BUILD_DIRECTORY" )
47
45
. short ( "-k" )
48
46
. long ( "keep-build-directory" )
49
47
. help ( "Keeps build directory after build." ) )
50
- . subcommand ( SubCommand :: with_name ( "world" ) . about ( "Builds documentation of every \
51
- crate") )
48
+ . subcommand ( SubCommand :: with_name ( "world" )
49
+ . about ( "Builds documentation of every crate") )
52
50
. subcommand ( SubCommand :: with_name ( "crate" )
53
51
. about ( "Builds documentation for a crate" )
54
52
. arg ( Arg :: with_name ( "CRATE_NAME" )
@@ -72,19 +70,19 @@ pub fn main() {
72
70
. help ( "update toolchain only if no toolchain is currently installed" ) ) )
73
71
. subcommand ( SubCommand :: with_name ( "add-essential-files" )
74
72
. about ( "Adds essential files for the installed version of rustc" ) )
75
- . subcommand ( SubCommand :: with_name ( "lock" ) . about ( "Locks cratesfyi daemon to stop \
76
- building new crates") )
73
+ . subcommand ( SubCommand :: with_name ( "lock" )
74
+ . about ( "Locks cratesfyi daemon to stop building new crates") )
77
75
. subcommand ( SubCommand :: with_name ( "unlock" )
78
- . about ( "Unlocks cratesfyi daemon to continue \
79
- building new crates") )
76
+ . about ( "Unlocks cratesfyi daemon to continue building new crates" ) )
80
77
. subcommand ( SubCommand :: with_name ( "print-options" ) ) )
81
78
. subcommand ( SubCommand :: with_name ( "start-web-server" )
82
79
. about ( "Starts web server" )
83
80
. arg ( Arg :: with_name ( "SOCKET_ADDR" )
84
81
. index ( 1 )
85
82
. required ( false )
86
83
. help ( "Socket address to listen to" ) ) )
87
- . subcommand ( SubCommand :: with_name ( "daemon" ) . about ( "Starts cratesfyi daemon" )
84
+ . subcommand ( SubCommand :: with_name ( "daemon" )
85
+ . about ( "Starts cratesfyi daemon" )
88
86
. arg ( Arg :: with_name ( "FOREGROUND" )
89
87
. short ( "-f" )
90
88
. long ( "foreground" )
@@ -102,15 +100,12 @@ pub fn main() {
102
100
. arg ( Arg :: with_name ( "DIRECTORY" )
103
101
. index ( 1 )
104
102
. required ( true )
105
- . help ( "Path of file or \
106
- directory") )
103
+ . help ( "Path of file or directory" ) )
107
104
. arg ( Arg :: with_name ( "PREFIX" )
108
105
. index ( 2 )
109
- . help ( "Prefix of files in \
110
- database") ) )
106
+ . help ( "Prefix of files in database" ) ) )
111
107
. subcommand ( SubCommand :: with_name ( "update-release-activity" )
112
- . about ( "Updates montly release activity \
113
- chart") )
108
+ . about ( "Updates monthly release activity chart" ) )
114
109
. subcommand ( SubCommand :: with_name ( "update-search-index" )
115
110
. about ( "Updates search index" ) )
116
111
. subcommand ( SubCommand :: with_name ( "delete-crate" )
0 commit comments