Skip to content

Commit 798a276

Browse files
committed
rustfmt
1 parent 88fb80f commit 798a276

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use clap::Parser;
55
#[derive(Parser, Debug)]
66
#[command(author, version, about, long_about = None)]
77
/// Renders a supersampled image of the Mandelbrot set to a png file.
8-
/// It is possible to change which part of the set is rendered, how zoomed in the image is,
8+
/// It is possible to change which part of the set is rendered, how zoomed in the image is,
99
/// the number of iterations to use, as well as a few other things.
1010
pub struct Cli {
1111
// This struct contains the runtime specified configuration of the program.

src/mandelbrot.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ pub fn supersampled_iterate(
226226
imag_delta: f64,
227227
maxiterations: u32,
228228
) -> f64 {
229-
let one_over_ssaa = if ssaa == 0 ||ssaa == 1 {
229+
let one_over_ssaa = if ssaa == 0 || ssaa == 1 {
230230
0.0
231231
} else {
232232
1.0 / f64::from(ssaa)

0 commit comments

Comments
 (0)