File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -82,8 +82,8 @@ fn create_docs(list: Vec<Document>) {
8282 filetop. push_str ( "Actions are like shell commands: they take arguments and do something! Skytable currently supports the following actions: \n \n " ) ;
8383 for action in list {
8484 let name = action. 0 ;
85- filetop. push_str ( & format ! ( "* [{}](Actions /{}.md)\n " , & name, & name) ) ;
86- let mut file = std:: fs:: File :: create ( format ! ( "../docs/Actions /{}.md" , name) ) . unwrap ( ) ;
85+ filetop. push_str ( & format ! ( "* [{}](actions /{}.md)\n " , & name, & name) ) ;
86+ let mut file = std:: fs:: File :: create ( format ! ( "../docs/actions /{}.md" , name) ) . unwrap ( ) ;
8787 file. write_all ( & action. 1 . into_bytes ( ) ) . unwrap ( ) ;
8888 }
8989 let mut file = std:: fs:: File :: create ( "../docs/actions.md" ) . unwrap ( ) ;
You can’t perform that action at this time.
0 commit comments