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.
2 parents 83d32e2 + 2fab820 commit 32c3112Copy full SHA for 32c3112
pages/Modules.md
@@ -708,7 +708,7 @@ export class Calculator {
708
this.current = 0;
709
}
710
711
- public handelChar(char: string) {
+ public handleChar(char: string) {
712
if (char === "=") {
713
this.evaluate();
714
return;
@@ -738,7 +738,7 @@ export class Calculator {
738
739
export function test(c: Calculator, input: string) {
740
for (let i = 0; i < input.length; i++) {
741
- c.handelChar(input[i]);
+ c.handleChar(input[i]);
742
743
744
console.log(`result of '${input}' is '${c.getResult()}'`);
0 commit comments