From 97a8bb0d56cf7bd15ab1a8a43e4bde25f7c7fc75 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Malte=20P=C3=BCtz?= <49274877+maltepuetz@users.noreply.github.com> Date: Tue, 15 Oct 2024 18:30:17 +0200 Subject: [PATCH] Remove extra 'using CairoMakie' (#4481) --- docs/src/reference/plots/scatter.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/docs/src/reference/plots/scatter.md b/docs/src/reference/plots/scatter.md index b7c65b59372..a2cfebb8244 100644 --- a/docs/src/reference/plots/scatter.md +++ b/docs/src/reference/plots/scatter.md @@ -12,9 +12,6 @@ scatter Scatters can be constructed by passing a list of x and y coordinates. ```@figure -using CairoMakie - - xs = range(0, 10, length = 30) ys = 0.5 .* sin.(xs)