Skip to content

Commit 5f8795b

Browse files
Apply suggestions from code review
Co-authored-by: Gunj Joshi <[email protected]> Signed-off-by: Harsh Mathur <[email protected]>
1 parent c8e6a51 commit 5f8795b

File tree

1 file changed

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

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,8 +179,8 @@ int main( void ) {
179179
float out;
180180
int i;
181181
for (i = 0; i < 5; i++) {
182-
out = lcmf(a[i], b[i]);
183-
printf("lcm(%f, %f) = %f\n", a[i], b[i], out);
182+
out = stdlib_base_lcmf( a[ i ], b[ i ] );
183+
printf( "lcm(%f, %f) = %f\n", a[ i ], b[ i ], out );
184184
}
185185
}
186186
```

0 commit comments

Comments
 (0)