Ver código fonte

DOCS: incorrect descriptions in AboutMetadata fields (#5744)

Antoine Meloche 2 anos atrás
pai
commit
c7bffb01be
1 arquivos alterados com 2 adições e 2 exclusões
  1. 2 2
      core/tauri-runtime/src/menu.rs

+ 2 - 2
core/tauri-runtime/src/menu.rs

@@ -584,13 +584,13 @@ impl AboutMetadata {
     self
   }
 
-  /// Defines the application version.
+  /// Defines the application's website link.
   pub fn website(mut self, website: impl Into<String>) -> Self {
     self.website.replace(website.into());
     self
   }
 
-  /// Defines the application version.
+  /// Defines the application's website link name.
   pub fn website_label(mut self, website_label: impl Into<String>) -> Self {
     self.website_label.replace(website_label.into());
     self