Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix the problem in Example page since v0.10 #1106

Merged
merged 1 commit into from
Aug 10, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
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