diff --git a/src/soroban.js b/src/soroban.js index 1c4f0b5a..772b34ef 100644 --- a/src/soroban.js +++ b/src/soroban.js @@ -1,7 +1,4 @@ -/** - * @class Soroban - * Soroban helper class to assist with formatting and parsing token amounts. - */ +/** Soroban helper class to assist with formatting and parsing token amounts. */ export class Soroban { /** * Given a whole number smart contract amount of a token and an amount of diff --git a/test/unit/soroban_test.js b/test/unit/soroban_test.js index c2726fc7..cf738fcb 100644 --- a/test/unit/soroban_test.js +++ b/test/unit/soroban_test.js @@ -13,12 +13,12 @@ describe('Soroban', function () { { amount: '1000000001.1', decimals: 7, - expected: /No decimal is allowed/ + expected: /No decimals are allowed/ }, { amount: '10000.00001.1', decimals: 4, - expected: /No decimal is allowed/ + expected: /No decimals are allowed/ } ];