Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions docs/src/examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,6 @@ file = CSV.File(IOBuffer(data); quotechar='"', escapechar='"')
file = CSV.File(IOBuffer(data); openquotechar='"' closequotechar='"', escapechar='"')
```


## [DateFormat](@id dateformat_example)

```julia
Expand Down Expand Up @@ -542,7 +541,7 @@ col1;col2;col3
file = CSV.File(IOBuffer(data); delim=';', decimal=',')
```

## [Thousands separator](@ref thousands_example)
## [Thousands separator](@id thousands_example)

```julia
using CSV
Expand All @@ -560,7 +559,7 @@ x y
file = CSV.File(IOBuffer(data); groupmark=',')
```

## [Custom groupmarks](@ref groupmark_example)
## [Custom groupmarks](@id groupmark_example)

```julia
using CSV
Expand Down