Skip to content

Commit b016c48

Browse files
committed
Add missing spaces in help text
Signed-off-by: Stefan Weil <sw@weilnetz.de>
1 parent 1e3bf29 commit b016c48

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

ccmain/tesseractclass.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ Tesseract::Tesseract()
242242
"%rej allowed before rej whole row", this->params()),
243243
double_MEMBER(tessedit_whole_wd_rej_row_percent, 70.00,
244244
"Number of row rejects in whole word rejects"
245-
"which prevents whole row rejection",
245+
" which prevents whole row rejection",
246246
this->params()),
247247
BOOL_MEMBER(tessedit_preserve_blk_rej_perfect_wds, true,
248248
"Only rej partially rejected words in block rejection",
@@ -576,13 +576,13 @@ Tesseract::Tesseract()
576576
" evaluation",
577577
this->params()),
578578
double_MEMBER(heuristic_segcost_rating_base, 1.25,
579-
"base factor for adding segmentation cost into word rating."
579+
"base factor for adding segmentation cost into word rating. "
580580
"It's a multiplying factor, the larger the value above 1, "
581581
"the bigger the effect of segmentation cost.",
582582
this->params()),
583583
double_MEMBER(heuristic_weight_rating, 1.0,
584584
"weight associated with char rating in combined cost of"
585-
"state",
585+
" state",
586586
this->params()),
587587
double_MEMBER(heuristic_weight_width, 1000.0,
588588
"weight associated with width evidence in combined cost of"

dict/dict.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ Dict::Dict(CCUtil *ccutil)
7575
getCCUtil()->params()),
7676
double_MEMBER(segment_penalty_dict_frequent_word, 1.0,
7777
"Score multiplier for word matches which have good case and"
78-
"are frequent in the given language (lower is better).",
78+
" are frequent in the given language (lower is better).",
7979
getCCUtil()->params()),
8080
double_MEMBER(segment_penalty_dict_case_ok, 1.1,
8181
"Score multiplier for word matches that have good case "
@@ -151,7 +151,7 @@ Dict::Dict(CCUtil *ccutil)
151151
getCCUtil()->params()),
152152
BOOL_MEMBER(segment_nonalphabetic_script, false,
153153
"Don't use any alphabetic-specific tricks."
154-
"Set to true in the traineddata config file for"
154+
" Set to true in the traineddata config file for"
155155
" scripts that are cursive or inherently fixed-pitch",
156156
getCCUtil()->params()),
157157
BOOL_MEMBER(save_doc_words, 0, "Save Document Words",
@@ -161,7 +161,7 @@ Dict::Dict(CCUtil *ccutil)
161161
getCCUtil()->params()),
162162
double_MEMBER(doc_dict_certainty_threshold, -2.25,
163163
"Worst certainty for words that can be inserted into the"
164-
"document dictionary",
164+
" document dictionary",
165165
getCCUtil()->params()),
166166
INT_MEMBER(max_permuter_attempts, 10000,
167167
"Maximum number of different"

wordrec/wordrec.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Wordrec::Wordrec() :
3434
params()),
3535
BOOL_MEMBER(force_word_assoc, FALSE,
3636
"force associator to run regardless of what enable_assoc is."
37-
"This is used for CJK where component grouping is necessary.",
37+
" This is used for CJK where component grouping is necessary.",
3838
CCUtil::params()),
3939
double_MEMBER(wordrec_worst_state, 1.0, "Worst segmentation state",
4040
params()),
@@ -106,7 +106,7 @@ Wordrec::Wordrec() :
106106
params()),
107107
INT_MEMBER(segsearch_max_futile_classifications, 20,
108108
"Maximum number of pain point classifications per chunk that"
109-
"did not result in finding a better word choice.",
109+
" did not result in finding a better word choice.",
110110
params()),
111111
double_MEMBER(segsearch_max_char_wh_ratio, 2.0,
112112
"Maximum character width-to-height ratio", params()),

0 commit comments

Comments
 (0)