aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2021-05-13 13:13:59 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2021-05-13 13:13:59 +0200
commit254c2074ab02f5a567af333c01a86e63996a6240 (patch)
treef4ef91fedd19d3b15b8582f46fbbe023433ae8b3
parent22c2e12f0a58a4747f92ff2a699b14f0e15bc976 (diff)
Fix error in manual
-rw-r--r--doc/manual.xhtml2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/manual.xhtml b/doc/manual.xhtml
index 903c7d3..9af0f33 100644
--- a/doc/manual.xhtml
+++ b/doc/manual.xhtml
@@ -10890,7 +10890,7 @@ unsigned short v_min = ...
unsigned short l_min = ...
result r (db.query&lt;employee_leave> (
- "vacation_days > " + query::_val(v_min) + "AND"
+ "vacation_days > " + query::_val(v_min) + "AND" +
"sick_leave_days > " + query::_val(l_min)));
t.commit ();