Skip to content

Commit cf3f92e

Browse files
committedMay 25, 2024··
fix: update include paths
1 parent 75d4f83 commit cf3f92e

File tree

701 files changed

+2572
-2572
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

701 files changed

+2572
-2572
lines changed
 

‎lib/node_modules/@stdlib/complex/base/assert/is-equal/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ out = isEqual( z1, z2 );
129129
Tests whether double-precision complex floating-point numbers are equal.
130130

131131
```c
132-
#include "@stdlib/complex/float64/ctor.h"
132+
#include "stdlib/complex/float64/ctor.h"
133133
#include <stdbool.h>
134134

135135
stdlib_complex128_t z1 = stdlib_complex128( 5.0, 2.0 );
@@ -167,7 +167,7 @@ bool stdlib_base_complex128_is_equal( const stdlib_complex128_t z1, const stdlib
167167
168168
```c
169169
#include "stdlib/complex/base/assert/is_equal.h"
170-
#include "@stdlib/complex/float64/ctor.h"
170+
#include "stdlib/complex/float64/ctor.h"
171171
#include <stdbool.h>
172172
#include <stdio.h>
173173

‎lib/node_modules/@stdlib/complex/base/assert/is-equal/examples/c/example.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
*/
1818

1919
#include "stdlib/complex/base/assert/is_equal.h"
20-
#include "@stdlib/complex/float64/ctor.h"
20+
#include "stdlib/complex/float64/ctor.h"
2121
#include <stdbool.h>
2222
#include <stdio.h>
2323

0 commit comments

Comments
 (0)
Please sign in to comment.