From c81a1af1e63fafade523706c02a36a835f61491a Mon Sep 17 00:00:00 2001 From: hungpham3112 <75968004+hungpham3112@users.noreply.github.com> Date: Thu, 10 Aug 2023 10:53:29 +0700 Subject: [PATCH] docs: fixing Example.md render with @ref => @id (#1106) --- docs/src/examples.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/src/examples.md b/docs/src/examples.md index dcce2f37..8aaa828d 100644 --- a/docs/src/examples.md +++ b/docs/src/examples.md @@ -506,7 +506,6 @@ file = CSV.File(IOBuffer(data); quotechar='"', escapechar='"') file = CSV.File(IOBuffer(data); openquotechar='"' closequotechar='"', escapechar='"') ``` - ## [DateFormat](@id dateformat_example) ```julia @@ -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 @@ -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