Skip to content

Commit a80a512

Browse files
committed
docs: fix argument types
--- 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: na - 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 d6059e1 commit a80a512

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/math/base/special/modf

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,8 +145,8 @@ stdlib_base_modf( 4.0, &integral, &frac );
145145
The function accepts the following arguments:
146146
147147
- **x**: `[in] double` input value.
148-
- **integral**: `[out] float*` destination for the integral part.
149-
- **frac**: `[out] float*` destination for the fractional part.
148+
- **integral**: `[out] double*` destination for the integral part.
149+
- **frac**: `[out] double*` destination for the fractional part.
150150
151151
```c
152152
void stdlib_base_modf( const double x, double *integral, double *frac );

0 commit comments

Comments
 (0)