cleanups to $EXAMPLES$

This commit is contained in:
vszakats
2013-03-17 21:59:19 +01:00
parent f3291fa597
commit a91e505c8b
3 changed files with 12 additions and 6 deletions

View File

@@ -10,6 +10,11 @@
* Change, ! Fix, % Optimization, + Addition, - Removal, ; Comment
*/
2013-03-17 21:59 UTC+0100 Viktor Szakats (harbour syenar.net)
* doc/en/dbstrux.txt
* doc/en/hvm.txt
* cleanups to $EXAMPLES$
2013-03-17 21:48 UTC+0100 Viktor Szakats (harbour syenar.net)
* extras/hbdoc/hbdoc.prg
* extras/httpsrv/uhttpd.prg

View File

@@ -572,10 +572,11 @@
__dbStructFilter() which does exactly the same.
$EXAMPLES$
LOCAL aStruct, aList, aRet
aStruct := { { "CODE", "N", 4, 0 }, ;
{ "NAME", "C", 10, 0 }, ;
{ "PHONE", "C", 13, 0 }, ;
{ "IQ", "N", 3, 0 } }
aStruct := { ;
{ "CODE", "N", 4, 0 }, ;
{ "NAME", "C", 10, 0 }, ;
{ "PHONE", "C", 13, 0 }, ;
{ "IQ", "N", 3, 0 } }
aList := { "IQ", "NAME" }
aRet := __FLedit( aStruct, aList )
// { { "IQ", "N", 3, 0 }, { "NAME", "C", 10, 0 } }

View File

@@ -40,8 +40,8 @@
executed function if no arguments are passed. Otherwise it returns
the name of the function or procedure at <nLevel>.
$EXAMPLES$
This test will show the functions and procedures in stack.
before executing it.
// This test will show the functions and procedures in stack.
// before executing it.
PROCEDURE Main()
LOCAL n := 1
DO WHILE ! Empty( ProcName( n ) )