Skip to content

Commit f8d9231

Browse files
committed
build: fix parameter description wrapping
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: passed - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 44f6dfe commit f8d9231

File tree

3 files changed

+18
-12
lines changed

3 files changed

+18
-12
lines changed

lib/node_modules/@stdlib/random/array/scripts/scaffolds/binary/scripts/scaffold.sh

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -200,11 +200,13 @@ repl_text_assign_desc="${repl_text_assign_desc/ /}"
200200
repl_text_factory_desc=$(echo "${repl_text_factory_desc}" | "${wrap}")
201201
repl_text_factory_desc="${repl_text_factory_desc/ /}"
202202

203-
repl_text_param_1_desc=$(echo "${repl_text_param_1_desc}" | "${wrap}")
204-
repl_text_param_1_desc="${repl_text_param_1_desc/ /}"
203+
repl_text_param_1_desc=$(echo " ${repl_text_param_1_desc}" | "${wrap}")
204+
repl_text_param_1_desc="${repl_text_param_1_desc/ /}"
205+
repl_text_param_1_desc="${repl_text_param_1_desc// / }"
205206

206-
repl_text_param_2_desc=$(echo "${repl_text_param_2_desc}" | "${wrap}")
207-
repl_text_param_2_desc="${repl_text_param_2_desc/ /}"
207+
repl_text_param_2_desc=$(echo " ${repl_text_param_2_desc}" | "${wrap}")
208+
repl_text_param_2_desc="${repl_text_param_2_desc/ /}"
209+
repl_text_param_2_desc="${repl_text_param_2_desc// / }"
208210

209211
# Define the copyright year:
210212
year=$(date +'%Y')

lib/node_modules/@stdlib/random/array/scripts/scaffolds/ternary/scripts/scaffold.sh

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -228,14 +228,17 @@ repl_text_assign_desc="${repl_text_assign_desc/ /}"
228228
repl_text_factory_desc=$(echo "${repl_text_factory_desc}" | "${wrap}")
229229
repl_text_factory_desc="${repl_text_factory_desc/ /}"
230230

231-
repl_text_param_1_desc=$(echo "${repl_text_param_1_desc}" | "${wrap}")
232-
repl_text_param_1_desc="${repl_text_param_1_desc/ /}"
231+
repl_text_param_1_desc=$(echo " ${repl_text_param_1_desc}" | "${wrap}")
232+
repl_text_param_1_desc="${repl_text_param_1_desc/ /}"
233+
repl_text_param_1_desc="${repl_text_param_1_desc// / }"
233234

234-
repl_text_param_2_desc=$(echo "${repl_text_param_2_desc}" | "${wrap}")
235-
repl_text_param_2_desc="${repl_text_param_2_desc/ /}"
235+
repl_text_param_2_desc=$(echo " ${repl_text_param_2_desc}" | "${wrap}")
236+
repl_text_param_2_desc="${repl_text_param_2_desc/ /}"
237+
repl_text_param_2_desc="${repl_text_param_2_desc// / }"
236238

237-
repl_text_param_3_desc=$(echo "${repl_text_param_3_desc}" | "${wrap}")
238-
repl_text_param_3_desc="${repl_text_param_3_desc/ /}"
239+
repl_text_param_3_desc=$(echo " ${repl_text_param_3_desc}" | "${wrap}")
240+
repl_text_param_3_desc="${repl_text_param_3_desc/ /}"
241+
repl_text_param_3_desc="${repl_text_param_3_desc// / }"
239242

240243
# Define the copyright year:
241244
year=$(date +'%Y')

lib/node_modules/@stdlib/random/array/scripts/scaffolds/unary/scripts/scaffold.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,8 +173,9 @@ repl_text_assign_desc="${repl_text_assign_desc/ /}"
173173
repl_text_factory_desc=$(echo "${repl_text_factory_desc}" | "${wrap}")
174174
repl_text_factory_desc="${repl_text_factory_desc/ /}"
175175

176-
repl_text_param_1_desc=$(echo "${repl_text_param_1_desc}" | "${wrap}")
177-
repl_text_param_1_desc="${repl_text_param_1_desc/ /}"
176+
repl_text_param_1_desc=$(echo " ${repl_text_param_1_desc}" | "${wrap}")
177+
repl_text_param_1_desc="${repl_text_param_1_desc/ /}"
178+
repl_text_param_1_desc="${repl_text_param_1_desc// / }"
178179

179180
# Define the copyright year:
180181
year=$(date +'%Y')

0 commit comments

Comments
 (0)