We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fda8357 commit ce4315fCopy full SHA for ce4315f
README.md
@@ -957,7 +957,7 @@ class BankAccount {
957
958
// It doesn't have to be prefixed with `get` or `set` to be a getter/setter
959
set balance(amount) {
960
- if (verifyAmountCanBeSetted(amount)) {
+ if (verifyIfAmountCanBeSetted(amount)) {
961
this._balance = amount;
962
}
963
@@ -966,7 +966,7 @@ class BankAccount {
966
return this._balance;
967
968
969
- verifyAmountCanBeSetted(val) {
+ verifyIfAmountCanBeSetted(val) {
970
// ...
971
972
0 commit comments