typos (thanks Jamyn!)

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4264 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2005-09-16 11:27:51 +00:00
parent 4d6282546d
commit f8062527fa
30 changed files with 67 additions and 67 deletions

View file

@ -83,8 +83,8 @@ give you the reference to argument which should be a variable (NSIS, user, array
item, stack), and * will convert it back to original variable. For example
(a=&b; *a=10) will set b to 10. Expression (*&a) is equal to simple (a).
Script is set of expressions (mathematical in general) delimeted with ';'.
Processing is mathematicaly right (2+2*2 will give 6), operations are performed
Script is set of expressions (mathematical in general) delimited with ';'.
Processing is mathematically right (2+2*2 will give 6), operations are performed
in a C like order (precedence).
Flow control:
@ -188,7 +188,7 @@ a constant expression to it. It could be either array item (array[1]), NSIS
register R0, any of the user variables (beside the variable with the same name:),
but never the constant.
Another may-be-useful posibility is to redeclare the function (the usual
Another may-be-useful possibility is to redeclare the function (the usual
declaration at the time when function already defined will simply call that
function). For such task you could use "#name", like "func()(1); #func()(2);".
But beware, function declaration occurs at time of parsing, so it's not possible