From a91e505c8b4e52a9e571e086512859e81ddbc619 Mon Sep 17 00:00:00 2001 From: vszakats Date: Sun, 17 Mar 2013 21:59:19 +0100 Subject: [PATCH] cleanups to $EXAMPLES$ --- ChangeLog.txt | 5 +++++ doc/en/dbstrux.txt | 9 +++++---- doc/en/hvm.txt | 4 ++-- 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/ChangeLog.txt b/ChangeLog.txt index 848c05e8dd..5e74163a29 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -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 diff --git a/doc/en/dbstrux.txt b/doc/en/dbstrux.txt index 3fc065fb5b..0ebbea8944 100644 --- a/doc/en/dbstrux.txt +++ b/doc/en/dbstrux.txt @@ -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 } } diff --git a/doc/en/hvm.txt b/doc/en/hvm.txt index 9275494c29..1e8cc0d81e 100644 --- a/doc/en/hvm.txt +++ b/doc/en/hvm.txt @@ -40,8 +40,8 @@ executed function if no arguments are passed. Otherwise it returns the name of the function or procedure at . $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 ) )