Skip to content

Commit

Permalink
chore: apply suggestions from code review
Browse files Browse the repository at this point in the history
Signed-off-by: Pranav <85227306+Pranavchiku@users.noreply.github.com>
  • Loading branch information
Pranavchiku authored Mar 3, 2024
1 parent 08e2a25 commit 70656ea
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* @license Apache-2.0
*
* Copyright (c) 2022 The Stdlib Authors.
* Copyright (c) 2024 The Stdlib Authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -29,7 +29,6 @@
#define NAME "log"
#define ITERATIONS 1000000
#define REPEATS 3
#define LN2 0.693147180559945309417232121458

/**
* Prints the TAP version.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ extern "C" {
#endif

/**
* Computes the base `b` logarithm of `x`.
* Computes the base b logarithm of x.
*/
double stdlib_base_log( const double x, const double b );

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ var addon = require( './../src/addon.node' );
// MAIN //

/**
* Computes the base `b` logarithm of `x`.
* Computes the base b logarithm of x.
*
* @private
* @param {number} x - input value
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/math/base/special/log/src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#include "stdlib/math/base/special/ln.h"

/**
* Computes the base `b` logarithm of `x`.
* Computes the base b logarithm of x.
*
* @param x input value
* @param b input value
Expand Down

0 comments on commit 70656ea

Please sign in to comment.