Skip to content

Commit a5472f8

Browse files
authored
Fix spelling error in adv tutorial
1 parent 4f78dd2 commit a5472f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Advanced Calculator Tutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ I strongly reccomend you got through the tutorial for the [Simple Calculator](ht
77
* This calculator is more advanced in that it includes some operations that require only one numberical input, like log and square root, as well as recalling constants, like pi and such that do not require any numerical input whatsoever. The program we build will have to deal with this, without crashing or bein vumbersome to use.
88
* The aim is to get this calculator to support the following functions: `+,-,*,/,/-,^,!,abs,sin,cos,tan,asin,acos,atan,log10,log,rand,randint,pi,e,tau,M+,M-,MR,degrees->radians,radians->degrees`
99
* The simple calculator program ended once the operation was completed, something we also want to avoid with this calculator.
10-
* Since it has a long list of functions, we also want to be able to lit out all of the things the calculator can do.
10+
* Since it has a long list of functions, we also want to be able to list out all of the things the calculator can do.
1111
* We want to sanitize our inputs so that we will not get screwed up by malicious or otherwiwe malformed inputs
1212

1313
## Sanitizing numerical inputs

0 commit comments

Comments
 (0)