Skip to content

Commit

Permalink
Whitespace changes
Browse files Browse the repository at this point in the history
  • Loading branch information
srknzl committed Jan 29, 2022
1 parent bd0d64b commit a37a697
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/bigdecimal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4253,18 +4253,18 @@ interface BigDecimalConstructor {
*```javascript
* // Single unified constructor for multiple values
* const { Big } = require('bigdecimal.js');
*
*
* // Construct from a string and clone it
* const x = Big('1.1111111111111111111111');
* const y = new Big(x); // you can also use 'new'
*
*
* const z = x.add(y);
* console.log(z.toString()); // 2.2222222222222222222222
*
*
* // You can also construct from a number or BigInt:
* const u = Big(1.1);
* const v = Big(2n);
*
*
* console.log(u.toString()); // 1.1
* console.log(v.toString()); // 2
* ```
Expand Down

0 comments on commit a37a697

Please # to comment.