diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 7bbff2657e..47fc43b878 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -16,6 +16,11 @@ The license applies to all entries newer than 2009-04-28. */ +2012-11-15 18:57 UTC+0100 Viktor Szakats (harbour syenar.net) + * doc/en/string.txt + ! fixed function name casing in recent commit in $EXAMPLES$ section + ! fixed casing in some strings + 2012-11-15 16:07 UTC+0200 Alexey Myronenko (m.oleksa@ukr.net) * doc/en/string.txt + documentaion for HB_AT(), HB_RAT() added/corrected diff --git a/harbour/doc/en/string.txt b/harbour/doc/en/string.txt index 7d1a3c8ca7..510e1d7887 100644 --- a/harbour/doc/en/string.txt +++ b/harbour/doc/en/string.txt @@ -42,8 +42,8 @@ in is an alphabetic character. If not, the function will return a logical false (.F.). $EXAMPLES$ - ? 'isalpha( "hello" ) = ', IsAlpha( "hello" ) - ? 'isalpha( "12345" ) = ', IsAlpha( "12345" ) + ? 'IsAlpha( "hello" ) = ', IsAlpha( "hello" ) + ? 'IsAlpha( "12345" ) = ', IsAlpha( "12345" ) $STATUS$ R $COMPLIANCE$ @@ -276,10 +276,10 @@ the second expression, the function will return 0. The third and fourth parameters lets you indicate a starting and end offset to search in. $EXAMPLES$ - ? 'HB_AT( "cde", "abcdefgfedcba" ) = ' + ; - Str( HB_AT( "cde", "abcdefgfedcba" ) ) // 3 - ? 'HB_AT( "cde", "abcdefgfedcba" ) = ' + ; - Str( HB_AT( "cde", "abcdefgfedcba", 4 ) ) // 0 + ? 'hb_At( "cde", "abcdefgfedcba" ) = ' + ; + Str( hb_At( "cde", "abcdefgfedcba" ) ) // 3 + ? 'hb_At( "cde", "abcdefgfedcba" ) = ' + ; + Str( hb_At( "cde", "abcdefgfedcba", 4 ) ) // 0 $STATUS$ R $COMPLIANCE$ @@ -367,8 +367,8 @@ The third and fourth parameters lets you indicate a starting and end offset to search in. $EXAMPLES$ - ? 'HB_RAt( "cde", "abcdefgfedcba" ) = ' + ; - Str( HB_RAt( "cde", "abcdefgfedcba" ) ) // 3 + ? 'hb_RAt( "cde", "abcdefgfedcba" ) = ' + ; + Str( hb_RAt( "cde", "abcdefgfedcba" ) ) // 3 $STATUS$ R $COMPLIANCE$