From 1d1a94f29eb7ef8f802a25bb3877e327e3bfa923 Mon Sep 17 00:00:00 2001 From: Amod Malviya Date: Sun, 16 Jun 2024 09:43:06 +0530 Subject: [PATCH] lints: fix doc indentation for beta --- src/lib.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index f7d4088..ab8317a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -27,11 +27,11 @@ //! ## Consistent Behaviour //! `webbrowser` defines consistent behaviour on all platforms as follows: //! * **Browser guarantee** - This library guarantees that the browser is opened, even for local files - the only crate to make such guarantees -//! at the time of this writing. Alternative libraries rely on existing system commands, which may lead to an editor being opened (instead -//! of the browser) for local html files, leading to an inconsistent behaviour for users. +//! at the time of this writing. Alternative libraries rely on existing system commands, which may lead to an editor being opened (instead +//! of the browser) for local html files, leading to an inconsistent behaviour for users. //! * **Non-Blocking** for GUI based browsers (e.g. Firefox, Chrome etc.), while **Blocking** for text based browser (e.g. lynx etc.) //! * **Suppressed output** by default for GUI based browsers, so that their stdout/stderr don't pollute the main program's output. This can be -//! overridden by `webbrowser::open_browser_with_options`. +//! overridden by `webbrowser::open_browser_with_options`. //! //! ## Crate Features //! `webbrowser` optionally allows the following features to be configured: