From 9f43a3126b672965eaa4e141880187350584f75b Mon Sep 17 00:00:00 2001 From: Mirek Kratochvil Date: Thu, 26 Oct 2023 18:56:18 +0200 Subject: [PATCH] fix doc shadowing --- docs/src/utilities.jl | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/src/utilities.jl b/docs/src/utilities.jl index 5dac1bb..0ef9ebc 100644 --- a/docs/src/utilities.jl +++ b/docs/src/utilities.jl @@ -69,16 +69,16 @@ mktempdir() do dir open(origin, "w") do f write(f, "hello") end - A.download_data_file( #src - url, #src - dest, #src - "2cf24dba5fb0a30e26e83b2ac5b9e29e1b161e5c1fa7425e73043362938b9824", #src - ) #src + A.download_data_file( + url, + dest, + "2cf24dba5fb0a30e26e83b2ac5b9e29e1b161e5c1fa7425e73043362938b9824", + ) x = A.download_data_file( #src url, #src dest, #src "2cf24dba5fb0a30e26e83b2ac5b9e29e1b161e5c1fa7425e73043362938b9824", #src - ) # src + ) #src @test x == dest #src @test read(origin) == read(dest) #src open(dest, "w") do f #src