Browse Source

fix(cli.rs): typo in input.rs (#2326)

existance -> existence
Ikko Ashimine 4 years ago
parent
commit
807b8625b7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tooling/cli.rs/src/dialoguer/prompts/input.rs

+ 1 - 1
tooling/cli.rs/src/dialoguer/prompts/input.rs

@@ -119,7 +119,7 @@ where
   /// The default behaviour is to append [`default`] to the prompt to tell the
   /// user what is the default value.
   ///
-  /// This method does not affect existance of default value, only its display in the prompt!
+  /// This method does not affect existence of default value, only its display in the prompt!
   pub fn show_default(&mut self, val: bool) -> &mut Input<'a, T> {
     self.show_default = val;
     self