From feacde0dca64fbbe374e0301ac782fec0390ff5f Mon Sep 17 00:00:00 2001 From: pierwill <19642016+pierwill@users.noreply.github.com> Date: Wed, 23 Sep 2020 10:25:32 -0700 Subject: [PATCH] docs: Edit csv2lp README s/prepend/append in `:strict` --- pkg/csv2lp/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/csv2lp/README.md b/pkg/csv2lp/README.md index 42a07940a5..8249243ced 100644 --- a/pkg/csv2lp/README.md +++ b/pkg/csv2lp/README.md @@ -163,7 +163,7 @@ All data types can include the format that is used to parse column data. It is t - note that you have to quote column delimiters whenever they appear in a CSV column value, for example: - `#constant,"double:,.",myColumn,"1.234,011"` - `long:format` and `unsignedLong:format` support the same format as `double`, but everything after and including a fraction character is ignored - - the format can be prepended with `strict` to fail when a fraction digit is present, for example: + - the format can be appended with `strict` to fail when a fraction digit is present, for example: - `1000.000` is `1000` when parsed as `long`, but fails when parsed as `long:strict` - `1_000,000` is `1000` when parsed as `long:,_`, but fails when parsed as `long:strict,_` - `boolean:truthy:falsy`