Skip to content

Commit

Permalink
Replace 'WIP' with 'TODO' in documentation comments
Browse files Browse the repository at this point in the history
Refactored comments in the code from 'WIP' to 'TODO' and corrected grammar errors. These changes make the comments more accurate and consistent with standard documentation styles.
  • Loading branch information
Denis Smet committed Mar 17, 2024
1 parent df7f028 commit 2aa490d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ columns:
# Data validation for each(!) value in the column.
# Of course, this can greatly affect the speed of checking.
# It depends on the number of checks and CSV file size.
# WIP. There are several ways to optimize this process, but author need time to test it carefully.
# TODO: There are several ways to optimize this process, but the author needs time to test it carefully.
rules:
# Important notes:
# 1. All rules except "not_empty" ignored for empty strings (length 0).
Expand Down Expand Up @@ -213,7 +213,7 @@ columns:
# Data validation for the entire(!) column using different data aggregation methods.
# Depending on the file size and the chosen aggregation method - this can use a lot of RAM time.
# Be careful with files that are 2-3 or more times larger than the available memory.
# WIP. There are several ways to optimize this process, but author need time to test it carefully.
# TODO: There are several ways to optimize this process, but the author needs time to test it carefully.
aggregate_rules:
is_unique: true # All values in the column are unique.

Expand Down
4 changes: 2 additions & 2 deletions schema-examples/full.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ columns:
# Data validation for each(!) value in the column.
# Of course, this can greatly affect the speed of checking.
# It depends on the number of checks and CSV file size.
# WIP. There are several ways to optimize this process, but author need time to test it carefully.
# TODO: There are several ways to optimize this process, but the author needs time to test it carefully.
rules:
# Important notes:
# 1. All rules except "not_empty" ignored for empty strings (length 0).
Expand Down Expand Up @@ -138,7 +138,7 @@ columns:
# Data validation for the entire(!) column using different data aggregation methods.
# Depending on the file size and the chosen aggregation method - this can use a lot of RAM time.
# Be careful with files that are 2-3 or more times larger than the available memory.
# WIP. There are several ways to optimize this process, but author need time to test it carefully.
# TODO: There are several ways to optimize this process, but the author needs time to test it carefully.
aggregate_rules:
is_unique: true # All values in the column are unique.

Expand Down

0 comments on commit 2aa490d

Please sign in to comment.