diff options
author | Robin Krahl <robin.krahl@ireas.org> | 2019-10-26 13:07:41 +0200 |
---|---|---|
committer | Robin Krahl <robin.krahl@ireas.org> | 2019-10-26 13:07:41 +0200 |
commit | dfe809ae6c191cbc8478363bc5b0ed2626f91bb0 (patch) | |
tree | 75c8287a32c51e06d179e1123e16cdba887895c3 /src | |
parent | 9273f3f45f7418e87b6e53baef78612ef0d6c5e7 (diff) | |
download | dialog-rs-dfe809ae6c191cbc8478363bc5b0ed2626f91bb0.tar.gz dialog-rs-dfe809ae6c191cbc8478363bc5b0ed2626f91bb0.tar.bz2 |
Add missing backtick in doc comment
Diffstat (limited to 'src')
-rw-r--r-- | src/backends/zenity.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backends/zenity.rs b/src/backends/zenity.rs index 12e052b..d5745eb 100644 --- a/src/backends/zenity.rs +++ b/src/backends/zenity.rs @@ -29,7 +29,7 @@ impl Zenity { /// Sets the icon of the dialog box. /// - /// The icon can either be one of `error`, `info`, `question` or `warning, or the path to an + /// The icon can either be one of `error`, `info`, `question` or `warning`, or the path to an /// image to use. The default image depends on the dialog type. pub fn set_icon(&mut self, icon: impl Into<String>) { self.icon = Some(icon.into()); |