Skip to content

Commit

Permalink
closes #15 - typo in example
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidUnderdown committed Mar 13, 2017
1 parent 25f39f6 commit e5c6bb8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion csv-schema-1.1.html
Expand Up @@ -1833,7 +1833,7 @@ <h4>Usage</h4>
another_column: any("file:///","http://")
third_column: any("C:","example.com")
fourth_column: ends(".html")
fifth_column: is($a_column) or is(concat($another_column,$third_column,"/",noExt(fourth_column),".pdf")
fifth_column: is($a_column) or is(concat($another_column,$third_column,"/",noExt($fourth_column),".pdf")
/*in this rather artificial example, fifth_column must be either "no file" (the value of a_column) or a PDF file with the same basic name as the HTML file named in fourth_column,
located at either file:///C:/ or http://example.com/ (in fact as written you could have file:///example.com/ or http://C:/ as well)*/
</pre>
Expand Down
2 changes: 1 addition & 1 deletion csv-schema-1.2.html
Expand Up @@ -1846,7 +1846,7 @@ <h4>Usage</h4>
another_column: any("file:///","http://")
third_column: any("C:","example.com")
fourth_column: ends(".html")
fifth_column: is($a_column) or is(concat($another_column,$third_column,"/",noExt(fourth_column),".pdf")
fifth_column: is($a_column) or is(concat($another_column,$third_column,"/",noExt($fourth_column),".pdf")
/*in this rather artificial example, fifth_column must be either "no file" (the value of a_column) or a PDF file with the same basic name as the HTML file named in fourth_column,
located at either file:///C:/ or http://example.com/ (in fact as written you could have file:///example.com/ or http://C:/ as well)*/
</pre>
Expand Down
2 changes: 1 addition & 1 deletion csv-schema.html
Expand Up @@ -1846,7 +1846,7 @@ <h4>Usage</h4>
another_column: any("file:///","http://")
third_column: any("C:","example.com")
fourth_column: ends(".html")
fifth_column: is($a_column) or is(concat($another_column,$third_column,"/",noExt(fourth_column),".pdf")
fifth_column: is($a_column) or is(concat($another_column,$third_column,"/",noExt($fourth_column),".pdf")
/*in this rather artificial example, fifth_column must be either "no file" (the value of a_column) or a PDF file with the same basic name as the HTML file named in fourth_column,
located at either file:///C:/ or http://example.com/ (in fact as written you could have file:///example.com/ or http://C:/ as well)*/
</pre>
Expand Down

0 comments on commit e5c6bb8

Please sign in to comment.