Skip to content

Commit

Permalink
Merge pull request #219 from Quantco/docs_improvements
Browse files Browse the repository at this point in the history
Fix two minor errors in docs
  • Loading branch information
MariusMerkleQC authored Apr 3, 2024
2 parents f52238c + 0ab22fb commit cb8e025
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/source/examples/example_dates.rst
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ Assuming that such a table exists in database, we can write a specification agai
prices_req.add_date_between_constraint(
column="date_from",
lower_bound="'20220101'",
upper_bound="'20220101'",
upper_bound="'20220131'",
# We don't tolerate any violations of the constraint:
min_fraction=1,
)
Expand All @@ -81,7 +81,7 @@ Assuming that such a table exists in database, we can write a specification agai
prices_req.add_date_between_constraint(
column="date_to",
lower_bound="'20220101'",
upper_bound="'20220101'",
upper_bound="'20220131'",
# We don't tolerate any violations of the constraint:
min_fraction=1,
)
Expand Down

0 comments on commit cb8e025

Please sign in to comment.