Skip to content

Commit b790d65

Browse files
authored
Update RuleSet_DSL_Full.md
1 parent 3fb4ac9 commit b790d65

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

RuleSet_DSL_Full.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -161,10 +161,10 @@ See [Appendix B](#appendix-b) for formats that can be specified. Note: the curre
161161
```dsl
162162
has pattern /^[A-Z]{2}\d{4}$/
163163
```
164-
- **`in [ … ]`** / **`not in [ … ]`**
164+
- **`is in [ … ]`** / **`is not in [ … ]`**
165165
```dsl
166-
in ['Active', 'Pending', 'Closed']
167-
not in ['Cancelled', 'Deleted']
166+
is in ['Active', 'Pending', 'Closed']
167+
is not in ['Cancelled', 'Deleted']
168168
```
169169

170170
### Exact Value Comparisons
@@ -300,8 +300,8 @@ Here is a simple set of rules that only specify value types for each column.
300300
<br>Note that lines starting with `//` are considered comments in RuleSet. Comments may be entered anywhere in the rules file.
301301
```dsl
302302
//Rules to validate squash_playsers.csv
303-
//These rules specify value type for each column, except for Zip_Code. Why do you think I have skipped evaluating
304-
//value type for Zip_Code? How would you do it using RuleSet? Find out in the more complex rule specifications below.
303+
//These rules specify value type for each column, except for Zip_Code. Why do you think value type evaluation has been
304+
//skipped for Zip_Code? How would you do it using RuleSet? Find out in the more complex rule specifications below.
305305
//-------------------------------------
306306
307307
column names in ['Rank', 'PSA_ID', 'First_Name', 'Last_Name', 'Country', 'Year_of_Birth', 'Address', 'Zip_Code']

0 commit comments

Comments
 (0)