Skip to content

Commit

Permalink
fix: formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
MarybethGasman committed Oct 27, 2023
1 parent e5091dc commit e58e4ab
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions components/config/opts.rs
Original file line number Diff line number Diff line change
Expand Up @@ -560,7 +560,7 @@ pub fn from_cmdline_args(mut opts: Options, args: &[String]) -> ArgumentParsingR
opts.optopt(
"",
"config-dir",
"config directory following xdg spec on linux platform",
"Config directory following xdg spec on linux platform",
"",
);
opts.optflag("v", "version", "Display servo version information");
Expand All @@ -573,8 +573,7 @@ pub fn from_cmdline_args(mut opts: Options, args: &[String]) -> ArgumentParsingR
"",
);
opts.optflag("", "no-minibrowser", "Open minibrowser");

opts.optflag("", "fullscreen", "open the window in fullscreen mode");
opts.optflag("", "fullscreen", "Open the window in fullscreen mode");

let opt_match = match opts.parse(args) {
Ok(m) => m,
Expand Down Expand Up @@ -824,4 +823,3 @@ pub fn set_options(opts: Opts) {
pub fn get() -> RwLockReadGuard<'static, Opts> {
OPTIONS.read().unwrap()
}

0 comments on commit e58e4ab

Please sign in to comment.