Skip to content

Commit d0aea25

Browse files
committed
Docs correctness
1 parent cce528a commit d0aea25

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

docs/api/properties/recordsdelimiter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ _Yes_
3838

3939
>📝**Note**
4040
>{: .text-grey-lt-000 .bg-green-000 }
41-
>The `RecordsDelimiter` property can be set to`vbCr`, `vbCrLf` or `vbLf`. This options unlocks a limitation from RFC-4180 CSV standard .
41+
>The `RecordsDelimiter` property can be set to`vbCr`, `vbCrLf` or `vbLf`. This options unlocks a limitation from RFC-4180 CSV specs.
4242
{: .text-grey-dk-300 .bg-grey-lt-000 }
4343

4444
[Back to Properties overview](https://ws-garcia.github.io/VBA-CSV-interface/api/properties/)

docs/examples/exportation-examples.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ nav_order: 2
1818

1919
## Export data to a CSV file
2020

21-
The [EXAMPLE1] shows how you can export all the data in VBA array to a CSV file using the RFC-4180 standard as paramount.
21+
The [EXAMPLE1] shows how you can export all the data in VBA array to a CSV file using the RFC-4180 specs as paramount.
2222

2323
#### [EXAMPLE1]
2424
>📝**Note**
@@ -51,7 +51,7 @@ End Sub
5151

5252
## Export to a CSV file without special syntax
5353

54-
The [EXAMPLE2] shows how you can export all the data in VBA array to a CSV file without check the RFC-4180 standard’s rules. Be careful, use this only if the array doesn't hold especial chars (vbCrLf [vbCr, vbLf], comma [semicolon], double quotes[apostrophe]) in neither of its fields. The output CSV file has neither field needing to be escaped.
54+
The [EXAMPLE2] shows how you can export all the data in VBA array to a CSV file without check the RFC-4180 specs rules. Be careful, use this only if the array doesn't hold especial chars (vbCrLf [vbCr, vbLf], comma [semicolon], double quotes[apostrophe]) in neither of its fields. The output CSV file has neither field needing to be escaped.
5555

5656
See also
5757
:[QuotationMode](https://ws-garcia.github.io/VBA-CSV-interface/api/enumerations/quotationmode.html), [EscapeType](https://ws-garcia.github.io/VBA-CSV-interface/api/enumerations/escapetype.html).
@@ -86,7 +86,7 @@ Sub ExportToCSV()
8686
Set CSVix = Nothing 'Terminate the current instance
8787
End Sub
8888
```
89-
The [EXAMPLE3] shows how you can export all the data in VBA array to a CSV file without check the RFC-4180 standard’s rules. Each field CSV of the output file need to be escaped by desired char. The procedure presented in the [EXAMPLE3] can be used in whatever circumstance.
89+
The [EXAMPLE3] shows how you can export all the data in VBA array to a CSV file without check the RFC-4180 specs rules. Each field CSV of the output file need to be escaped by desired char. The procedure presented in the [EXAMPLE3] can be used in whatever circumstance.
9090

9191
See also
9292
:[QuotationMode](https://ws-garcia.github.io/VBA-CSV-interface/api/enumerations/quotationmode.html), [EscapeType](https://ws-garcia.github.io/VBA-CSV-interface/api/enumerations/escapetype.html).

docs/examples/importation-examples.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ nav_order: 1
1818

1919
## Import CSV file data
2020

21-
The [EXAMPLE1] shows how you can import all the data from a CSV file using the RFC-4180 standard as paramount.
21+
The [EXAMPLE1] shows how you can import all the data from a CSV file using the RFC-4180 specs as paramount.
2222

2323
#### [EXAMPLE1]
2424
>📝**Note**
@@ -43,7 +43,7 @@ End Sub
4343

4444
## Import top 10 records from a CSV file into a VBA array
4545

46-
The [EXAMPLE2] shows how you can import the Top 10 records from a CSV file using the RFC-4180 standard as paramount.
46+
The [EXAMPLE2] shows how you can import the Top 10 records from a CSV file using the RFC-4180 specs as paramount.
4747

4848
#### [EXAMPLE2]
4949
>📝**Note**
@@ -91,7 +91,7 @@ End Sub
9191
```
9292

9393
## Import ten middle records from a CSV file into a VBA array
94-
The [EXAMPLE4] shows how you can import 10 middle records from a CSV file using the RFC-4180 standard as paramount.
94+
The [EXAMPLE4] shows how you can import 10 middle records from a CSV file using the RFC-4180 specs as paramount.
9595

9696
#### [EXAMPLE4]
9797
>📝**Note**
@@ -118,9 +118,9 @@ End Sub
118118

119119
## Import CSV file that haven’t special syntax
120120

121-
This is the fastest way to work with CSV files because the CSV interface class don't check the syntax given at the RFC-4180 standard. If your CSV files has trailing spaces, or you don't know if it holds a field needing to be escaped, please [reset the config options](https://ws-garcia.github.io/VBA-CSV-interface/api/methods/resettodefault.html) for the current instance to avoid incorrect results.
121+
This is the fastest way to work with CSV files because the CSV interface class don't check the syntax given at the RFC-4180 specs. If your CSV files has trailing spaces, or you don't know if it holds a field needing to be escaped, please [reset the config options](https://ws-garcia.github.io/VBA-CSV-interface/api/methods/resettodefault.html) for the current instance to avoid incorrect results.
122122

123-
The [EXAMPLE5] shows how you can import all the data from a CSV file without checking the syntax given at the RFC-4180 standard. The file to be parsed has neither field needing to be escaped.
123+
The [EXAMPLE5] shows how you can import all the data from a CSV file without checking the syntax given at the RFC-4180 specs. The file to be parsed has neither field needing to be escaped.
124124

125125
See also
126126
:[QuotationMode](https://ws-garcia.github.io/VBA-CSV-interface/api/enumerations/quotationmode.html), [EscapeType](https://ws-garcia.github.io/VBA-CSV-interface/api/enumerations/escapetype.html).
@@ -161,7 +161,7 @@ Sub ImportRecords_RFC4180()
161161
Set CSVix = Nothing 'Terminate the current instance
162162
End Sub
163163
```
164-
The [EXAMPLE7] shows how you can import all the data from a CSV file without checking the syntax given at the RFC-4180 standard. In the file to be parsed, all fields need to be escaped.
164+
The [EXAMPLE7] shows how you can import all the data from a CSV file without checking the syntax given at the RFC-4180 specs. In the file to be parsed, all fields need to be escaped.
165165

166166
See also
167167
:[QuotationMode](https://ws-garcia.github.io/VBA-CSV-interface/api/enumerations/quotationmode.html), [EscapeType](https://ws-garcia.github.io/VBA-CSV-interface/api/enumerations/escapetype.html).

0 commit comments

Comments
 (0)