From 0707c73b18707d023027f384c3a086c705d722ea Mon Sep 17 00:00:00 2001 From: mactr0n Date: Mon, 11 Mar 2019 22:18:53 +0100 Subject: [PATCH] fixed typo, improved readme --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 20eca65..d1e4855 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ A very simple password generation API. * `length` of password candidates (*`int`*, *optional*, *default=8*) * `numDigits` the number of digits (*`int`*, *optional*, *default=0*) * `numSymbols` the number of symbols (*`int`*, *optional*, *default=0*) - * `replaceVowels` replace (german) vowels of password candidates randomly (*`bool`*, *optional*, , *default=false*) + * `replaceVowels` replace (german) vowels of password candidates randomly (*`bool`*, *optional*, *default=false*) ### Success Responses @@ -22,9 +22,10 @@ A very simple password generation API. ``` [ "candidates": [ - "password1", - "password2", + "password_candidate_1", + "password_candidate_1", ... + "password_candidate_n" ] ] ```