Skip to content

Commit 028f7f1

Browse files
committed
docs: remove repeated example input
--- 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: passed - 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: passed - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent b6667b9 commit 028f7f1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/node_modules/@stdlib/math/base/special/factorial2/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ double stdlib_base_factorial2( const int32_t n );
160160
#include <stdint.h>
161161
162162
int main( void ) {
163-
const int32_t x[] = { 1, 10, 1, 301, 302 };
163+
const int32_t x[] = { 1, 10, 100, 301, 302 };
164164
165165
double b;
166166
int i;

lib/node_modules/@stdlib/math/base/special/factorial2/examples/c/example.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
#include <stdint.h>
2222

2323
int main( void ) {
24-
const int32_t x[] = { 1, 10, 1, 301, 302 };
24+
const int32_t x[] = { 1, 10, 100, 301, 302 };
2525

2626
double b;
2727
int i;

0 commit comments

Comments
 (0)