Removed some profanity from the docs

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@6519 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
anders_k 2014-07-11 21:11:11 +00:00
parent e7b3911e53
commit 9ed46ac829
8 changed files with 12 additions and 12 deletions

View file

@ -18,9 +18,9 @@ void __declspec(dllexport) myFunction(HWND hwndParent, int string_size,
// note if you want parameters from the stack, pop them off in order.
// i.e. if you are called via exdll::myFunction file.dat poop.dat
// i.e. if you are called via exdll::myFunction file.dat read.txt
// calling popstring() the first time would give you file.dat,
// and the second time would give you poop.dat.
// and the second time would give you read.txt.
// you should empty the stack of your parameters, and ONLY your
// parameters.