corrected LogicLib example

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@5183 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
joostverburg 2007-06-27 17:02:29 +00:00
parent 44e366f9da
commit 8786a4494c

View file

@ -105,7 +105,7 @@ For example, checking a value of a variable without the LogicLib can be done as
\c StrCmp $0 'some value' 0 +3
\c MessageBox MB_OK '$$0 is some value'
\c Goto done
\c StrCmp $0 'else' 0 +3
\c StrCmp $0 'some other value' 0 +3
\c MessageBox MB_OK '$$0 is some other value'
\c Goto done
\c # else