File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ Width of the visualization
8686Cannot be used with \fB \-\- column \- width \fR .
8787.RE
8888.TP
89- \fB \-\- column \- width \fR \fI <TREE_WIDTH> \fR\fI \fR \fI<BAR_WIDTH> \fR
89+ \fB \-\- column \- width \fR \fI <TREE_WIDTH> \fR \fI <BAR_WIDTH> \fR
9090Maximum widths of the tree column and width of the bar column
9191.RS
9292.PP
Original file line number Diff line number Diff line change @@ -230,7 +230,7 @@ fn render_value_hint(arg: &Arg) -> String {
230230 } else {
231231 parts. push ( format ! ( "\\ fI<{}>\\ fR" , roff_escape( arg. get_id( ) . as_str( ) ) ) ) ;
232232 }
233- let value_part = parts. join ( "\\ fI \\ fR " ) ;
233+ let value_part = parts. join ( " " ) ;
234234 let defaults: Vec < _ > = arg
235235 . get_default_values ( )
236236 . iter ( )
Original file line number Diff line number Diff line change 44
55// Since the CLI in Windows looks a little different, and I am way too lazy to make two versions
66// of man page files, the following test would only run in UNIX-like environment.
7- #![ cfg( unix) ]
87#![ cfg( feature = "cli" ) ]
98
109use parallel_disk_usage:: man_page:: render_man_page;
1110
1211#[ test]
12+ #[ cfg_attr( not( unix) , ignore = "man page test only runs on Unix-like platforms" ) ]
1313fn man_page ( ) {
1414 let received = render_man_page ( ) ;
1515 let expected = include_str ! ( "../exports/pdu.1" ) ;
You can’t perform that action at this time.
0 commit comments