Skip to content

Commit a597852

Browse files
authored
Update README.md
1 parent 1708a04 commit a597852

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ User can:
3737
- Key in a character after \ to go to the closest matching file or directory on current path
3838
- Backspace to edit the path
3939

40-
#####Usage:
40+
Usage:
4141
```
4242
string userInput = AutoPrompt.GetPath("Choose certification file :\n\tUp/down arrow to go through files in current directory.\n\t'\\' to step into directory\n\tBackspace to edit\n\tOr just type to go to nearest search match\n\n>");
4343
```
@@ -46,7 +46,7 @@ string userInput = AutoPrompt.GetPath("Choose certification file :\n\tUp/down ar
4646

4747
Prompts the user for input on command line with a prompt string as well as a pre filled input which can be edited
4848

49-
#####Usage:
49+
Usage:
5050
```
5151
string userInput = AutoPrompt.PromptForInput("How do you feel? (Press backspce to edit) :", "Awesome");
5252
```
@@ -57,7 +57,7 @@ string userInput = AutoPrompt.PromptForInput("How do you feel? (Press backspce t
5757

5858
Prompts the user for input on command line with a prompt string as well as a set of option that can be choosen using Up and Down arrow. The input is editable as well
5959

60-
#####Usage:
60+
Usage:
6161
```
6262
string userInput = AutoPrompt.PromptForInput("Choose occupation (Press up/down arrow to choose) :", new string[] { "Engineer", "Scientist", "Salesman", "Manager", "TopManagement" });
6363
```
@@ -66,7 +66,7 @@ string userInput = AutoPrompt.PromptForInput("Choose occupation (Press up/down a
6666

6767
Prompts the user for input on command line with a prompt string as well as a set of option. User can only choose among various options using Up and Down arrow.
6868

69-
#####Usage:
69+
Usage:
7070
```
7171
string userInput = AutoPrompt.PromptForInput("Choose occupation (Press up/down arrow to choose) :", new string[] { "Engineer", "Scientist", "Salesman", "Manager", "TopManagement" }, false);
7272
```
@@ -78,7 +78,7 @@ Prompts the user for input on command line with a prompt string as well as a set
7878

7979
To search, key in an alphabet and the option closest match to the char key'd in will be set as user input
8080

81-
#####Usage:
81+
Usage:
8282
```
8383
string userInput = AutoPrompt.PromptForInput_Searchable("Choose city (Press up/down arrow or type name) :", new string[] { "New York City", "San Fransisco", "New Delhi", "Bangalore", "Tokyo" });
8484
```
@@ -88,7 +88,7 @@ string userInput = AutoPrompt.PromptForInput_Searchable("Choose city (Press up/d
8888

8989
Prompts the user for password input on command line. The entered password is masked with * echoded on the console with each characted of the password key'd in
9090

91-
#####Usage:
91+
Usage:
9292
```
9393
string userInput = AutoPrompt.GetPassword("Enter password :");
9494
```

0 commit comments

Comments
 (0)