···8383 /// Position to attempt a fix at
8484 #[clap(short, long, parse(try_from_str = parse_line_col))]
8585 pub position: (usize, usize),
8686+8787+ /// Do not fix files in place, display a diff instead
8888+ #[clap(short, long = "dry-run")]
8989+ pub diff_only: bool,
8690}
87918892mod dirs {