Skip to content

Commit 01d7c2a

Browse files
authored
Fixed issue with the semicolon showing as a winky face emoji (SpartnerNL#180)
1 parent 7d29eb3 commit 01d7c2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

3.1/imports/custom-csv-settings.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class UsersImport implements ToModel, WithCustomCsvSettings
3030
```
3131

3232

33-
A CSV file stores data in rows and the values in each row is separated with a separator, also known as a delimiter. Although the file is defined as Comma Separated Values, the delimiter could be anything. Delimiter requires a single character. For Tab use `"\t"`. The most common delimiters are: a comma (,), a semicolon (;), a tab (\t), a space ( ) and a pipe (|).
33+
A CSV file stores data in rows and the values in each row is separated with a separator, also known as a delimiter. Although the file is defined as Comma Separated Values, the delimiter could be anything. Delimiter requires a single character. For Tab use `"\t"`. The most common delimiters are: a comma `,`, a semicolon `;`, a tab `\t`, a space ` `, or a pipe `|`.
3434

3535
```php
3636
public function getCsvSettings(): array

0 commit comments

Comments
 (0)