File tree 2 files changed +6
-6
lines changed 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -93,8 +93,8 @@ pub struct Config {
93
93
* @Article Configuration
94
94
*
95
95
* Fundoc will read all the configuration parameters from the `fundoc.json` config file
96
- * which should be placed into the working directory of the programm's proccess (generally, it's a root of a
97
- * poject )
96
+ * which should be placed into the working directory of the programm's process (generally, it's a root of a
97
+ * project )
98
98
*/
99
99
pub fn read_config ( path : Option < & str > ) -> Option < Config > {
100
100
let mut config: Option < Config > = None ;
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ enum Keyword {
33
33
/**
34
34
* @Article Syntax
35
35
*
36
- * `@Article <Article name>` is for marking documentation sections to tell in which articale this section should
36
+ * `@Article <Article name>` is for marking documentation sections to tell in which article this section should
37
37
* be merged. You can use `markdown` syntax in documentation sections.
38
38
*
39
39
* Example:
@@ -52,7 +52,7 @@ enum Keyword {
52
52
Article ,
53
53
/**
54
54
* @Article Syntax
55
- * `@FileArtcile ` allows you to mark a whole file is a source of documentation for a specified
55
+ * `@FileArticle ` allows you to mark a whole file is a source of documentation for a specified
56
56
* article.
57
57
*
58
58
* Example:
@@ -191,7 +191,7 @@ impl Parser {
191
191
/**
192
192
* @Article Configuration
193
193
*
194
- * You can diable parsing for a part of your file or a whole file by adding this comment: `fundoc-disable`.
194
+ * You can disable parsing for a part of your file or a whole file by adding this comment: `fundoc-disable`.
195
195
* If you wan't to turn fundoc on few lines below just add this comment: `fundoc-enable`.
196
196
*
197
197
* In case when you don't write the enable-comment all text from disable comment until the end of
@@ -556,7 +556,7 @@ pub fn test () {}
556
556
}
557
557
558
558
#[ test]
559
- fn parse_documentation_with_identation_before_comments ( ) {
559
+ fn parse_documentation_with_indentation_before_comments ( ) {
560
560
let mut parser = Parser :: new ( get_test_config ( ) ) ;
561
561
let file_content = "
562
562
/**
You can’t perform that action at this time.
0 commit comments