Skip to content

Commit 6911adc

Browse files
authored
style: remove leading spaces before TSDoc lines
Signed-off-by: Philipp Burckhardt <pburckhardt@outlook.com>
1 parent 2e3ddcd commit 6911adc

1 file changed

Lines changed: 13 additions & 13 deletions

File tree

  • lib/node_modules/@stdlib/math/base/special/roundnf/docs/types

lib/node_modules/@stdlib/math/base/special/roundnf/docs/types/index.d.ts

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -31,19 +31,19 @@
3131
*
3232
* @example
3333
* // Round a value to 2 decimal places:
34-
* var v = roundnf( 3.1415927410125732, -2 );
35-
* // returns ~3.14
36-
*
37-
* @example
38-
* // If n = 0, `roundnf` behaves like `roundf`:
39-
* var v = roundnf( 3.1415927410125732, 0 );
40-
* // returns 3.0
41-
*
42-
* @example
43-
* // Round a value to the nearest thousand:
44-
* var v = roundnf( 12368.0, 3 );
45-
* // returns ~12000.0
46-
*/
34+
* var v = roundnf( 3.1415927410125732, -2 );
35+
* // returns ~3.14
36+
*
37+
* @example
38+
* // If n = 0, `roundnf` behaves like `roundf`:
39+
* var v = roundnf( 3.1415927410125732, 0 );
40+
* // returns 3.0
41+
*
42+
* @example
43+
* // Round a value to the nearest thousand:
44+
* var v = roundnf( 12368.0, 3 );
45+
* // returns ~12000.0
46+
*/
4747
declare function roundnf( x: number, n: number ): number;
4848

4949

0 commit comments

Comments
 (0)