From cbaa8fca56d33f4746d5f4d06451f1c313966af2 Mon Sep 17 00:00:00 2001 From: harryscholes Date: Wed, 18 Mar 2020 09:53:09 +0000 Subject: [PATCH 1/2] Fix annotate docstring --- src/shorthands.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/shorthands.jl b/src/shorthands.jl index 776626a9..57bfe176 100644 --- a/src/shorthands.jl +++ b/src/shorthands.jl @@ -428,8 +428,8 @@ Add annotations to an existing plot. # Arguments -- `anns`: An `AbstractVector` of tuples of the form (x,y,text). The text object - can be an String or PlotText +- `anns`: An `AbstractVector` of tuples of the form `(x,y,text)`. The `text` object + can be a `String` or `PlotText`. # Example ```julia-repl From 62290a2a248fdae0cb53124fa7cf7781a14cb764 Mon Sep 17 00:00:00 2001 From: Simon Christ Date: Wed, 18 Mar 2020 13:49:06 +0100 Subject: [PATCH 2/2] Fix appveyor.yml (#2484) * Update appveyor.yml * change parantheses * escape inner quotation marks * another try * Update appveyor.yml --- appveyor.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index cfc27473..890f4960 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -33,10 +33,10 @@ install: - ps: iex ((new-object net.webclient).DownloadString("https://raw.githubusercontent.com/JuliaCI/Appveyor.jl/version-1/bin/install.ps1")) build_script: + - C:\julia\bin\julia --project=C:\projects\plots-jl -e "using Pkg; Pkg.pin(PackageSpec(name="""FixedPointNumbers""", version="""0.7"""))" - echo "%JL_BUILD_SCRIPT%" - C:\julia\bin\julia -e "%JL_BUILD_SCRIPT%" - - C:\julia\bin\julia -e "using Pkg; Pkg.pin(PackageSpec(name="FixedPointNumbers", version="0.7"))" - + test_script: - echo "%JL_TEST_SCRIPT%" - C:\julia\bin\julia -e "%JL_TEST_SCRIPT%"