Skip to content

Commit

Permalink
Fix typo in conversion/index.js (#4016)
Browse files Browse the repository at this point in the history
* Fix typo in conversion/index.js

specificy -> specificity

* Update app/util/conversion/index.js

Updated correct text

* Update app/util/conversion/index.js

Format update

* Update app/util/conversion/index.js

format update

* Update app/util/conversion/index.js

format update

Co-authored-by: sethkfman <10342624+sethkfman@users.noreply.github.com>
  • Loading branch information
eltociear and sethkfman authored Aug 12, 2022
1 parent f33cace commit 79c4e43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/util/conversion/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ const conversionUtil = (

const getBigNumber = (value, base) => {
if (!isValidBase(base)) {
throw new Error('Must specificy valid base');
throw new Error('Must specify valid base');
}

// We don't include 'number' here, because BigNumber will throw if passed
Expand Down

0 comments on commit 79c4e43

Please sign in to comment.