From 2bcad9b784c7d10b71dd70ef512a66ceb38ac339 Mon Sep 17 00:00:00 2001 From: Fredrik Bagge Carlson Date: Fri, 15 May 2026 19:35:53 +0200 Subject: [PATCH] Fix typo `lalbe` -> `label` in nyquistcircles plot recipe The centers series in the `nyquistcircles` Plots recipe used `lalbe` as the attribute name, which is not a Plots attribute. As a result, the documented "Center" label was silently dropped from the legend (and some Plots versions warn about the unknown attribute). Co-Authored-By: Claude Opus 4.7 (1M context) --- src/weights.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/weights.jl b/src/weights.jl index f625855a..1890dfcf 100644 --- a/src/weights.jl +++ b/src/weights.jl @@ -168,7 +168,7 @@ nyquistcircles t = LinRange(0, 2pi, 100) re, im = cos.(t), sin.(t) @series begin - lalbe --> "Center" + label --> "Center" centers end for i in eachindex(radii)