From 1b57469996caaac4a32cbca310b9a7c6318faf79 Mon Sep 17 00:00:00 2001 From: Pavel Sountsov Date: Tue, 16 Jan 2024 22:05:27 -0800 Subject: [PATCH] Fix formatting. --- gnuplot/examples/example1.rs | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/gnuplot/examples/example1.rs b/gnuplot/examples/example1.rs index e603ed93..60a1f65b 100644 --- a/gnuplot/examples/example1.rs +++ b/gnuplot/examples/example1.rs @@ -177,21 +177,13 @@ fn example(c: Common) x, y3, x_err, - &[ - Caption(r"x\_error\_bars"), - PointSymbol('T'), - Color("cyan"), - ], + &[Caption(r"x\_error\_bars"), PointSymbol('T'), Color("cyan")], ) .y_error_bars( x, y4, y_err, - &[ - Caption(r"y\_error\_bars"), - PointSymbol('R'), - Color("green"), - ], + &[Caption(r"y\_error\_bars"), PointSymbol('R'), Color("green")], ) .set_title("Error fg1.5", &[]);