Skip to content

Commit e8d2601

Browse files
feat: CI errors
1 parent cfb5abe commit e8d2601

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

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

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
@license Apache-2.0
44
5-
Copyright (c) 2018 The Stdlib Authors.
5+
Copyright (c) 2024 The Stdlib Authors.
66
77
Licensed under the Apache License, Version 2.0 (the "License");
88
you may not use this file except in compliance with the License.
@@ -89,14 +89,14 @@ var v = log2f( -4.0 );
8989
```javascript
9090
var randu = require( '@stdlib/random/base/randu' );
9191
var round = require( '@stdlib/math/base/special/round' );
92-
var log2f = require( './../lib' );
92+
var log2f = require( '@stdlib/math/base/special/log2f' );
9393

9494
var x;
9595
var i;
9696

9797
for ( i = 0; i < 100; i++ ) {
98-
x = round( randu() * 100.0 );
99-
console.log( 'log2f(%d) = %d', x, log2f( x ) );
98+
x = round( randu() * 100.0 );
99+
console.log( 'log2f(%d) = %d', x, log2f( x ) );
100100
}
101101
```
102102

@@ -171,15 +171,15 @@ float stdlib_base_log2f( const float x );
171171
#include <stdio.h>
172172
173173
int main( void ) {
174-
float x;
175-
float v;
176-
int i;
177-
178-
for ( i = 0; i < 100; i++ ) {
179-
x = ( ( (float)rand() / (float)RAND_MAX ) * 100.0f );
180-
v = stdlib_base_log2f( x );
181-
printf( "log2f(%f) = %f\n", x, v );
182-
}
174+
float x;
175+
float v;
176+
int i;
177+
178+
for ( i = 0; i < 100; i++ ) {
179+
x = ( ( (float)rand() / (float)RAND_MAX ) * 100.0f );
180+
v = stdlib_base_log2f( x );
181+
printf( "log2f(%f) = %f\n", x, v );
182+
}
183183
}
184184
```
185185

lib/node_modules/@stdlib/math/base/special/log2f/benchmark/c/benchmark.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @license Apache-2.0
33
*
4-
* Copyright (c) 2018 The Stdlib Authors.
4+
* Copyright (c) 2024 The Stdlib Authors.
55
*
66
* Licensed under the Apache License, Version 2.0 (the "License");
77
* you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)