Skip to content

Commit 921d0e0

Browse files
author
cpyrgas
committed
[Docs] Fixed typos in DBServer Filter and Deleted topics
1 parent 840216f commit 921d0e0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Docs/Rdd.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1777,7 +1777,7 @@
17771777
FUNCTION IgnoreDeleted()
17781778
LOCAL oDBSales AS Sales
17791779
oDBSales := Sales{}
1780-
oDBSales:SetFilter(!oDBSales:Deleted)
1780+
oDBSales:SetFilter("!Deleted()")
17811781
oDBSales:GoTop()
17821782
.
17831783
. <Process records>
@@ -2191,9 +2191,9 @@
21912191
FUNCTION IgnoreDeleted()
21922192
LOCAL oDBSales AS Sales
21932193
oDBSales := Sales{}
2194-
oDBSales:SetFilter(!oDBSales:Deleted)
2194+
oDBSales:SetFilter("!Deleted()")
21952195
oDBSales:GoTop() // move pointer to invoke filter
2196-
? oDBSales:Filter // !oDBSales:Deleted
2196+
? oDBSales:Filter // !Deleted()
21972197
.
21982198
. <Process records>
21992199
.

0 commit comments

Comments
 (0)