From bb01998233f2d706677e78130725453a2edbb0ea Mon Sep 17 00:00:00 2001 From: Jameson Nash Date: Mon, 20 Oct 2025 09:17:34 -0400 Subject: [PATCH] Fix function syntax in waveform.jl docs Previously this declared an anonymous function of one argument (..), then documented the argument `..` a global variable. ``` julia> function (f) end #3 (generic function with 1 method) ``` --- lib/BloqadeWaveforms/src/waveform.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/BloqadeWaveforms/src/waveform.jl b/lib/BloqadeWaveforms/src/waveform.jl index 0f13c6ecf..cc1d5b340 100644 --- a/lib/BloqadeWaveforms/src/waveform.jl +++ b/lib/BloqadeWaveforms/src/waveform.jl @@ -655,4 +655,4 @@ julia> wf[0.9..1.5] ``` """ -function (..) end \ No newline at end of file +function .. end