Skip to content

Commit 9eb3433

Browse files
committed
update doc string on null columns everywhere and fix typo
1 parent c712205 commit 9eb3433

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/datajudge/requirements.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ def add_uniques_equality_constraint(
275275
of a ``DataSource`` are strictly the ones of a reference set of expected values,
276276
specified via the ``uniques`` parameter.
277277
278-
Null values in the columns ``colums`` are ignored. To assert the non-existence of them use
278+
Null values in the columns ``columns`` are ignored. To assert the non-existence of them use
279279
the ``NullAbsence`` constraint via the ``add_null_absence_constraint`` helper method
280280
for ``WithinRequirement``.
281281
By default, the null filtering does not trigger if multiple columns are fetched at once.
@@ -322,7 +322,7 @@ def add_uniques_superset_constraint(
322322
The ``UniquesSuperset`` constraint asserts that reference set of expected values,
323323
specified via ``uniques``, is contained in given columns of a ``DataSource``.
324324
325-
Null values in the column are ignored. To assert the non-existence of them use
325+
Null values in the columns ``columns`` are ignored. To assert the non-existence of them use
326326
the ``NullAbsence`` constraint via the ``add_null_absence_constraint`` helper method
327327
for ``WithinRequirement``.
328328
By default, the null filtering does not trigger if multiple columns are fetched at once.
@@ -379,7 +379,7 @@ def add_uniques_subset_constraint(
379379
a ``DataSource`` are part of a reference set of expected values, specified via
380380
``uniques``.
381381
382-
Null values in the column are ignored. To assert the non-existence of them use
382+
Null values in the columns ``columns`` are ignored. To assert the non-existence of them use
383383
the ``NullAbsence`` constraint via the ``add_null_absence_constraint`` helper method
384384
for ``WithinRequirement``.
385385
By default, the null filtering does not trigger if multiple columns are fetched at once.
@@ -1485,7 +1485,7 @@ def add_uniques_equality_constraint(
14851485
of a ``DataSource``'s columns, are strictly the ones of another ``DataSource``'s
14861486
columns.
14871487
1488-
Null values in the column are ignored. To assert the non-existence of them use
1488+
Null values in the columns ``columns`` are ignored. To assert the non-existence of them use
14891489
the ``NullAbsence`` constraint via the ``add_null_absence_constraint`` helper method
14901490
for ``WithinRequirement``.
14911491
By default, the null filtering does not trigger if multiple columns are fetched at once.
@@ -1535,7 +1535,7 @@ def add_uniques_superset_constraint(
15351535
derived from the unique values in given columns of the reference ``DataSource``,
15361536
is contained in given columns of a ``DataSource``.
15371537
1538-
Null values in the column are ignored. To assert the non-existence of them use
1538+
Null values in the columns ``columns`` are ignored. To assert the non-existence of them use
15391539
the ``NullAbsence`` constraint via the ``add_null_absence_constraint`` helper method
15401540
for ``WithinRequirement``.
15411541
By default, the null filtering does not trigger if multiple columns are fetched at once.
@@ -1594,7 +1594,7 @@ def add_uniques_subset_constraint(
15941594
a ``DataSource`` are part of the unique values of given columns of another
15951595
``DataSource``.
15961596
1597-
Null values in the column are ignored. To assert the non-existence of them use
1597+
Null values in the columns ``columns`` are ignored. To assert the non-existence of them use
15981598
the ``NullAbsence`` constraint via the ``add_null_absence_constraint`` helper method
15991599
for ``WithinRequirement``.
16001600
By default, the null filtering does not trigger if multiple columns are fetched at once.

0 commit comments

Comments
 (0)