Skip to content

Commit 36e129e

Browse files
committed
chore: copy paste error fix
--- 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: 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 27db758 commit 36e129e

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/stats/base/dsemyc/examples/c

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/stats/base/dsemyc/examples/c/example.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* limitations under the License.
1717
*/
1818

19-
#include "stdlib/stats/base/dsemtk.h"
19+
#include "stdlib/stats/base/dsemyc.h"
2020
#include <stdio.h>
2121

2222
int main( void ) {
@@ -30,7 +30,7 @@ int main( void ) {
3030
const int strideX = 2;
3131

3232
// Compute the standard error of the mean:
33-
double v = stdlib_strided_dsemtk( N, 1.0, x, strideX );
33+
double v = stdlib_strided_dsemyc( N, 1.0, x, strideX );
3434

3535
// Print the result:
3636
printf( "standard error of the mean: %lf\n", v );

0 commit comments

Comments
 (0)