Skip to content

Commit cb8e025

Browse files
Merge pull request #219 from Quantco/docs_improvements
Fix two minor errors in docs
2 parents f52238c + 0ab22fb commit cb8e025

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/source/examples/example_dates.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ Assuming that such a table exists in database, we can write a specification agai
7171
prices_req.add_date_between_constraint(
7272
column="date_from",
7373
lower_bound="'20220101'",
74-
upper_bound="'20220101'",
74+
upper_bound="'20220131'",
7575
# We don't tolerate any violations of the constraint:
7676
min_fraction=1,
7777
)
@@ -81,7 +81,7 @@ Assuming that such a table exists in database, we can write a specification agai
8181
prices_req.add_date_between_constraint(
8282
column="date_to",
8383
lower_bound="'20220101'",
84-
upper_bound="'20220101'",
84+
upper_bound="'20220131'",
8585
# We don't tolerate any violations of the constraint:
8686
min_fraction=1,
8787
)

0 commit comments

Comments
 (0)